diff options
| author | Richard M. Stallman | 2006-06-13 23:08:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-06-13 23:08:39 +0000 |
| commit | a4feb1448a99a293512a5fd59073a898a7ffe14a (patch) | |
| tree | 726f234a9c63832734bd2a097dead88796b4285b /src | |
| parent | c32de52a4f02cd411dea9620bf6d6770691238d7 (diff) | |
| download | emacs-a4feb1448a99a293512a5fd59073a898a7ffe14a.tar.gz emacs-a4feb1448a99a293512a5fd59073a898a7ffe14a.zip | |
(Fcall_process): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c index f23996253f1..7b8ba8fea21 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -203,6 +203,10 @@ t (mix it with ordinary output), or a file name string. | |||
| 203 | Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted. | 203 | Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted. |
| 204 | Remaining arguments are strings passed as command arguments to PROGRAM. | 204 | Remaining arguments are strings passed as command arguments to PROGRAM. |
| 205 | 205 | ||
| 206 | If executable PROGRAM can't be found as an executable, `call-process' | ||
| 207 | signals a Lisp error. `call-process' reports errors in execution of | ||
| 208 | the program only through its return and output. | ||
| 209 | |||
| 206 | If BUFFER is 0, `call-process' returns immediately with value nil. | 210 | If BUFFER is 0, `call-process' returns immediately with value nil. |
| 207 | Otherwise it waits for PROGRAM to terminate | 211 | Otherwise it waits for PROGRAM to terminate |
| 208 | and returns a numeric exit status or a signal description string. | 212 | and returns a numeric exit status or a signal description string. |