diff options
author | Noam Postavsky <npostavs@gmail.com> | 2018-02-05 19:36:27 -0500 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2018-02-07 20:17:50 -0500 |
commit | 04c5bd5b1f1dc07994d70caa640a07da6b5a54b5 (patch) | |
tree | d506276ecc406bb81c25e0f2ea83dc139c6f8c67 /lisp/subr.el | |
parent | e209034536b11fbbba19f46a45f6afc316890a5d (diff) | |
download | emacs-04c5bd5b1f1dc07994d70caa640a07da6b5a54b5.tar.gz |
Doc fixes for process functions (Bug#30349)
* doc/lispref/processes.texi (Asynchronous Processes): Explain what
the 'stopped' state means for a pipe process.
* src/process.c (Fmake_process, Fmake_pipe_process)
(Fmake_serial_process, Fmake_network_process):
* lisp/subr.el (start-process):
* lisp/net/tls.el (open-tls-stream):
* lisp/net/starttls.el (starttls-open-stream):
* lisp/net/gnutls.el (open-gnutls-stream): Remove meaningless phrase
"specify an output stream" phrase from docstring.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 64cbbd52ab8..2de5b3766c2 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -2110,10 +2110,10 @@ and the file name is displayed in the echo area." NAME is name for process. It is modified if necessary to make it unique. BUFFER is the buffer (or buffer name) to associate with the process. -Process output (both standard output and standard error streams) goes -at end of BUFFER, unless you specify an output stream or filter -function to handle the output. BUFFER may also be nil, meaning that -this process is not associated with any buffer. +Process output (both standard output and standard error streams) +goes at end of BUFFER, unless you specify a filter function to +handle the output. BUFFER may also be nil, meaning that this +process is not associated with any buffer. PROGRAM is the program file name. It is searched for in `exec-path' \(which see). If nil, just associate a pty with the buffer. Remaining |