diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/subr.el | 6 |
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 |
| 1937 | arguments are strings to give program as arguments. | 1937 | arguments are strings to give program as arguments. |
| 1938 | 1938 | ||
| 1939 | If you want to separate standard output from standard error, invoke | 1939 | If you want to separate standard output from standard error, use |
| 1940 | the command through a shell and redirect one of them using the shell | 1940 | `make-process' or invoke the command through a shell and redirect |
| 1941 | syntax." | 1941 | one 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 |