diff options
| author | Michael Albinus | 2019-04-23 16:07:38 +0200 |
|---|---|---|
| committer | Michael Albinus | 2019-04-23 16:07:38 +0200 |
| commit | e8c07cae5faca34c64568a393cdc2da59a295c86 (patch) | |
| tree | a747e6bf41f62c863e54bee136f427a33f9ec6ef | |
| parent | d9d592dd44f5782bb66da528d223085a863ab1e2 (diff) | |
| download | emacs-e8c07cae5faca34c64568a393cdc2da59a295c86.tar.gz emacs-e8c07cae5faca34c64568a393cdc2da59a295c86.zip | |
Remote processes cannot use a pipe process for stderr
* doc/lispref/processes.texi (Asynchronous Processes):
(Accepting Output): Remote processes cannot use a pipe process for
stderr.
| -rw-r--r-- | doc/lispref/processes.texi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index c08b14c72c5..69f781e3a9f 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -734,7 +734,11 @@ current working directory is the local name component of | |||
| 734 | 734 | ||
| 735 | Depending on the implementation of the file name handler, it might not | 735 | Depending on the implementation of the file name handler, it might not |
| 736 | be possible to apply @var{filter} or @var{sentinel} to the resulting | 736 | be possible to apply @var{filter} or @var{sentinel} to the resulting |
| 737 | process object. @xref{Filter Functions}, and @ref{Sentinels}. | 737 | process object. The @code{:stderr} argument cannot be a pipe process, |
| 738 | file name handlers do not support pipe processes for this. A buffer | ||
| 739 | as @code{:stderr} argument is accepted, its contents is shown without | ||
| 740 | the use of pipe processes. @xref{Filter Functions}, @ref{Sentinels}, | ||
| 741 | and @ref{Accepting Output}. | ||
| 738 | 742 | ||
| 739 | Some file name handlers may not support @code{make-process}. In such | 743 | Some file name handlers may not support @code{make-process}. In such |
| 740 | cases, this function does nothing and returns @code{nil}. | 744 | cases, this function does nothing and returns @code{nil}. |
| @@ -1908,6 +1912,9 @@ code: | |||
| 1908 | (while (accept-process-output stderr-process)) | 1912 | (while (accept-process-output stderr-process)) |
| 1909 | @end example | 1913 | @end example |
| 1910 | 1914 | ||
| 1915 | Reading pending standard error from a process running on a remote host | ||
| 1916 | is not possible this way. | ||
| 1917 | |||
| 1911 | @node Processes and Threads | 1918 | @node Processes and Threads |
| 1912 | @subsection Processes and Threads | 1919 | @subsection Processes and Threads |
| 1913 | @cindex processes, threads | 1920 | @cindex processes, threads |