Mercurial > hg > xemacs-beta
comparison src/callproc.c @ 837:0490271de7d8
[xemacs-hg @ 2002-05-14 05:30:30 by adrian]
[PATCH] xemacs-21.5: Process-related docstring improvements spurred by Norbert Koch <vg9ryfer.fsf@smtprelay.t-online.de>
author | adrian |
---|---|
date | Tue, 14 May 2002 05:30:36 +0000 |
parents | a634e3b7acc8 |
children | 1e4e42de23d5 |
comparison
equal
deleted
inserted
replaced
836:8f668d99fea6 | 837:0490271de7d8 |
---|---|
114 Arguments are | 114 Arguments are |
115 (PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS). | 115 (PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS). |
116 The program's input comes from file INFILE (nil means `/dev/null'). | 116 The program's input comes from file INFILE (nil means `/dev/null'). |
117 Insert output in BUFFER before point; t means current buffer; | 117 Insert output in BUFFER before point; t means current buffer; |
118 nil for BUFFER means discard it; 0 means discard and don't wait. | 118 nil for BUFFER means discard it; 0 means discard and don't wait. |
119 If BUFFER is a string, then find or create a buffer with that name, | |
120 then insert the output in that buffer, before point. | |
119 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case, | 121 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case, |
120 REAL-BUFFER says what to do with standard output, as above, | 122 REAL-BUFFER says what to do with standard output, as above, |
121 while STDERR-FILE says what to do with standard error in the child. | 123 while STDERR-FILE says what to do with standard error in the child. |
122 STDERR-FILE may be nil (discard standard error output), | 124 STDERR-FILE may be nil (discard standard error output), |
123 t (mix it with ordinary output), or a file name string. | 125 t (mix it with ordinary output), or a file name string. |