aboutsummaryrefslogtreecommitdiffstats
path: root/src/callproc.c
diff options
context:
space:
mode:
authorGlenn Morris2019-02-08 09:20:40 -0800
committerGlenn Morris2019-02-08 09:20:40 -0800
commit0f9940505f87de74c86de17e8a7bf793d9d8dda4 (patch)
tree0215c1cc88041710fc32a2d17818e8c66c490ca7 /src/callproc.c
parent4f138318d3553162ccc6d0e4554456a65324ec25 (diff)
parent0cd7b526a14ead6cbe78df481a2fd975252bb9ac (diff)
downloademacs-0f9940505f87de74c86de17e8a7bf793d9d8dda4.tar.gz
emacs-0f9940505f87de74c86de17e8a7bf793d9d8dda4.zip
Merge from origin/emacs-26
0cd7b52 (origin/emacs-26) Minor improvements to do strings in callproc.c b8c7017 Improve documentation of 'date-to-time' and 'parse-time-string' 46095a7 Fix downloading of URLs that end in a slash 3b60a0a * doc/misc/eww.texi (Basics): Fix eww keybindings. (Bug#34291) 8e22025 Fix process-thread docstring 459b669 Fix failures of vc-find-revision with non-ASCII file names e9ff190 * doc/lispref/tips.texi (Documentation Tips): Fix quotes. (B... 3e49a08 ; * src/coding.h (struct coding_system): Fix a typo in a comm... b657286 Add documentation for tabulated-list functions in the elisp m... 6e0f67b Fix URL in ucs-normalize.el ce3ae1f * etc/PROBLEMS: Amend entry for profiler bug #34235 to mentio... # Conflicts: # doc/lispref/os.texi
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c
index d4558387cfc..a3d09609d7b 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
239Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted. 239Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
240Remaining arguments are strings passed as command arguments to PROGRAM. 240Remaining arguments ARGS are strings passed as command arguments to PROGRAM.
241 241
242If executable PROGRAM can't be found as an executable, `call-process' 242If executable PROGRAM can't be found as an executable, `call-process'
243signals a Lisp error. `call-process' reports errors in execution of 243signals a Lisp error. `call-process' reports errors in execution of
@@ -1033,7 +1033,8 @@ STDERR-FILE may be nil (discard standard error output),
1033t (mix it with ordinary output), or a file name string. 1033t (mix it with ordinary output), or a file name string.
1034 1034
1035Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted. 1035Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
1036Remaining args are passed to PROGRAM at startup as command args. 1036Remaining arguments ARGS are passed to PROGRAM at startup as command-line
1037arguments.
1037 1038
1038If BUFFER is 0, `call-process-region' returns immediately with value nil. 1039If BUFFER is 0, `call-process-region' returns immediately with value nil.
1039Otherwise it waits for PROGRAM to terminate 1040Otherwise it waits for PROGRAM to terminate