aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPhilipp Stephani2018-04-04 12:14:56 +0200
committerPhilipp Stephani2018-04-07 22:15:42 +0200
commit8df23a82042fa7dbaaa4377bc376d705595b073f (patch)
tree707eaddc19a76a72c39ae0481c8eea7ac93dda31 /doc
parent55525480780d34b2f968739249685d0c9e9a063f (diff)
downloademacs-8df23a82042fa7dbaaa4377bc376d705595b073f.tar.gz
emacs-8df23a82042fa7dbaaa4377bc376d705595b073f.zip
Document that 'make-process' mixes the output streams
* doc/lispref/processes.texi (Asynchronous Processes): * src/process.c (Fmake_process): Document that standard error is mixed with standard output if STDERR is nil. * test/src/process-tests.el (make-process/mix-stderr): New unit test.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/processes.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index af177e053cc..3e26f577982 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -681,7 +681,9 @@ a default sentinel will be used, which can be overridden later.
681@item :stderr @var{stderr} 681@item :stderr @var{stderr}
682Associate @var{stderr} with the standard error of the process. A 682Associate @var{stderr} with the standard error of the process. A
683non-@code{nil} value should be either a buffer or a pipe process 683non-@code{nil} value should be either a buffer or a pipe process
684created with @code{make-pipe-process}, described below. 684created with @code{make-pipe-process}, described below. If
685@var{stderr} is @code{nil}, standard error is mixed with standard
686output, and both are sent to @var{buffer} or @var{filter}.
685@end table 687@end table
686 688
687The original argument list, modified with the actual connection 689The original argument list, modified with the actual connection