aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/subr.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 00acdb6541f..3b536f2e7d6 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1936,9 +1936,9 @@ PROGRAM is the program file name. It is searched for in `exec-path'
1936\(which see). If nil, just associate a pty with the buffer. Remaining 1936\(which see). If nil, just associate a pty with the buffer. Remaining
1937arguments are strings to give program as arguments. 1937arguments are strings to give program as arguments.
1938 1938
1939If you want to separate standard output from standard error, invoke 1939If you want to separate standard output from standard error, use
1940the command through a shell and redirect one of them using the shell 1940`make-process' or invoke the command through a shell and redirect
1941syntax." 1941one of them using the shell syntax."
1942 (unless (fboundp 'make-process) 1942 (unless (fboundp 'make-process)
1943 (error "Emacs was compiled without subprocess support")) 1943 (error "Emacs was compiled without subprocess support"))
1944 (apply #'make-process 1944 (apply #'make-process