diff options
| author | Eli Zaretskii | 2019-02-08 10:46:00 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-02-08 10:46:00 +0200 |
| commit | 0cd7b526a14ead6cbe78df481a2fd975252bb9ac (patch) | |
| tree | 8bb3e8bc91fffb7bddaa7651804fef7c765f2da9 /src | |
| parent | b8c70172f354ad57bb6c547d59f585d751f632ed (diff) | |
| download | emacs-0cd7b526a14ead6cbe78df481a2fd975252bb9ac.tar.gz emacs-0cd7b526a14ead6cbe78df481a2fd975252bb9ac.zip | |
Minor improvements to do strings in callproc.c
* src/callproc.c (Fcall_process, Fcall_process_region): Minor
fixes to doc strings. Suggested by Nicholas Drozd
<nicholasdrozd@gmail.com>. (Bug#34274)
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c index 3f1d17e345b..fa12d02e394 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -237,7 +237,7 @@ DESTINATION can also have the form (REAL-BUFFER STDERR-FILE); in that case, | |||
| 237 | t (mix it with ordinary output), or a file name string. | 237 | t (mix it with ordinary output), or a file name string. |
| 238 | 238 | ||
| 239 | Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted. | 239 | Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted. |
| 240 | Remaining arguments are strings passed as command arguments to PROGRAM. | 240 | Remaining arguments ARGS are strings passed as command arguments to PROGRAM. |
| 241 | 241 | ||
| 242 | If executable PROGRAM can't be found as an executable, `call-process' | 242 | If executable PROGRAM can't be found as an executable, `call-process' |
| 243 | signals a Lisp error. `call-process' reports errors in execution of | 243 | signals a Lisp error. `call-process' reports errors in execution of |
| @@ -1048,7 +1048,8 @@ STDERR-FILE may be nil (discard standard error output), | |||
| 1048 | t (mix it with ordinary output), or a file name string. | 1048 | t (mix it with ordinary output), or a file name string. |
| 1049 | 1049 | ||
| 1050 | Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted. | 1050 | Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted. |
| 1051 | Remaining args are passed to PROGRAM at startup as command args. | 1051 | Remaining arguments ARGS are passed to PROGRAM at startup as command-line |
| 1052 | arguments. | ||
| 1052 | 1053 | ||
| 1053 | If BUFFER is 0, `call-process-region' returns immediately with value nil. | 1054 | If BUFFER is 0, `call-process-region' returns immediately with value nil. |
| 1054 | Otherwise it waits for PROGRAM to terminate | 1055 | Otherwise it waits for PROGRAM to terminate |