diff options
| author | Philipp Stephani | 2018-04-04 12:14:56 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2018-04-07 22:15:42 +0200 |
| commit | 8df23a82042fa7dbaaa4377bc376d705595b073f (patch) | |
| tree | 707eaddc19a76a72c39ae0481c8eea7ac93dda31 /doc | |
| parent | 55525480780d34b2f968739249685d0c9e9a063f (diff) | |
| download | emacs-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.texi | 4 |
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} |
| 682 | Associate @var{stderr} with the standard error of the process. A | 682 | Associate @var{stderr} with the standard error of the process. A |
| 683 | non-@code{nil} value should be either a buffer or a pipe process | 683 | non-@code{nil} value should be either a buffer or a pipe process |
| 684 | created with @code{make-pipe-process}, described below. | 684 | created with @code{make-pipe-process}, described below. If |
| 685 | @var{stderr} is @code{nil}, standard error is mixed with standard | ||
| 686 | output, and both are sent to @var{buffer} or @var{filter}. | ||
| 685 | @end table | 687 | @end table |
| 686 | 688 | ||
| 687 | The original argument list, modified with the actual connection | 689 | The original argument list, modified with the actual connection |