aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c3
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;
219DEFUN ("call-process", Fcall_process, Scall_process, 1, MANY, 0, 219DEFUN ("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.
221The remaining arguments are optional. 221The remaining arguments are optional.
222
222The program's input comes from file INFILE (nil means `/dev/null'). 223The program's input comes from file INFILE (nil means `/dev/null').
224If you want to make the input come from an Emacs buffer, use
225`call-process-region' instead.
223 226
224Third argument DESTINATION specifies how to handle program's output. 227Third argument DESTINATION specifies how to handle program's output.
225If DESTINATION is a buffer, or t that stands for the current buffer, 228If DESTINATION is a buffer, or t that stands for the current buffer,