diff src/process.h @ 371:cc15677e0335 r21-2b1

Import from CVS: tag r21-2b1
author cvs
date Mon, 13 Aug 2007 11:03:08 +0200
parents 8e84bee8ddd0
children 74fd4e045ea6
line wrap: on
line diff
--- a/src/process.h	Mon Aug 13 11:01:58 2007 +0200
+++ b/src/process.h	Mon Aug 13 11:03:08 2007 +0200
@@ -46,13 +46,7 @@
 #define PROCESSP(x) RECORDP (x, process)
 #define GC_PROCESSP(x) GC_RECORDP (x, process)
 #define CHECK_PROCESS(x) CHECK_RECORD (x, process)
-#define PROCESS_LIVE_P(x) (!NILP ((x)->pipe_instream))
-
-#define CHECK_LIVE_PROCESS(x) do {			\
-  CHECK_PROCESS (x);					\
-  if (! PROCESS_LIVE_P (XPROCESS (x)))			\
-    dead_wrong_type_argument (Qprocess_live_p, (x));	\
-} while (0)
+#define PROCESS_LIVE_P(x) (!NILP (XPROCESS(x)->pipe_instream))
 
 #ifdef emacs