comparison src/callproc.c @ 284:558f606b08ae r21-0b40

Import from CVS: tag r21-0b40
author cvs
date Mon, 13 Aug 2007 10:34:13 +0200
parents 6330739388db
children e11d67e05968
comparison
equal deleted inserted replaced
283:fa3d41851a08 284:558f606b08ae
47 #endif 47 #endif
48 48
49 #ifdef DOS_NT 49 #ifdef DOS_NT
50 /* When we are starting external processes we need to know whether they 50 /* When we are starting external processes we need to know whether they
51 take binary input (no conversion) or text input (\n is converted to 51 take binary input (no conversion) or text input (\n is converted to
52 \r\n). Similar for output: if newlines are written as \r\n then it's 52 \r\n). Similarly for output: if newlines are written as \r\n then it's
53 text process output, otherwise it's binary. */ 53 text process output, otherwise it's binary. */
54 Lisp_Object Vbinary_process_input; 54 Lisp_Object Vbinary_process_input;
55 Lisp_Object Vbinary_process_output; 55 Lisp_Object Vbinary_process_output;
56 #endif /* DOS_NT */ 56 #endif /* DOS_NT */
57 57
59 59
60 /* The environment to pass to all subprocesses when they are started. 60 /* The environment to pass to all subprocesses when they are started.
61 This is in the semi-bogus format of ("VAR=VAL" "VAR2=VAL2" ... ) 61 This is in the semi-bogus format of ("VAR=VAL" "VAR2=VAL2" ... )
62 */ 62 */
63 Lisp_Object Vprocess_environment; 63 Lisp_Object Vprocess_environment;
64
65 #ifdef DOS_NT
66 Lisp_Object Qbuffer_file_type;
67 #endif /* DOS_NT */
68 64
69 /* True iff we are about to fork off a synchronous process or if we 65 /* True iff we are about to fork off a synchronous process or if we
70 are waiting for it. */ 66 are waiting for it. */
71 volatile int synch_process_alive; 67 volatile int synch_process_alive;
72 68