diff options
| author | Stefan Monnier | 2019-07-09 16:13:25 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2019-07-09 16:13:25 -0400 |
| commit | 3078e6d2fb9b2acf785be11de465f6410acaa5fc (patch) | |
| tree | b64e4e1d395652888af94a38660654711f3e7e03 /src/callproc.c | |
| parent | 2391a8e24f2ea1f80661ed29fcc64c02c7d8d95c (diff) | |
| parent | 412139f1be7415791a0d964f95f319c86eded426 (diff) | |
| download | emacs-3078e6d2fb9b2acf785be11de465f6410acaa5fc.tar.gz emacs-3078e6d2fb9b2acf785be11de465f6410acaa5fc.zip | |
Merge branch 'master' of git+ssh://git.sv.gnu.org/srv/git/emacs into trunk
Diffstat (limited to 'src/callproc.c')
| -rw-r--r-- | src/callproc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c index 2596f9019e4..3c77238cfb6 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -219,7 +219,10 @@ static mode_t const default_output_mode = 0666; | |||
| 219 | DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0, | 219 | DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0, |
| 220 | doc: /* Call PROGRAM synchronously in separate process. | 220 | doc: /* Call PROGRAM synchronously in separate process. |
| 221 | The remaining arguments are optional. | 221 | The remaining arguments are optional. |
| 222 | |||
| 222 | The program's input comes from file INFILE (nil means `/dev/null'). | 223 | The program's input comes from file INFILE (nil means `/dev/null'). |
| 224 | If you want to make the input come from an Emacs buffer, use | ||
| 225 | `call-process-region' instead. | ||
| 223 | 226 | ||
| 224 | Third argument DESTINATION specifies how to handle program's output. | 227 | Third argument DESTINATION specifies how to handle program's output. |
| 225 | If DESTINATION is a buffer, or t that stands for the current buffer, | 228 | If DESTINATION is a buffer, or t that stands for the current buffer, |