aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
authorStefan Monnier2019-07-09 16:13:25 -0400
committerStefan Monnier2019-07-09 16:13:25 -0400
commit3078e6d2fb9b2acf785be11de465f6410acaa5fc (patch)
treeb64e4e1d395652888af94a38660654711f3e7e03 /src/callproc.c
parent2391a8e24f2ea1f80661ed29fcc64c02c7d8d95c (diff)
parent412139f1be7415791a0d964f95f319c86eded426 (diff)
downloademacs-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.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,