summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNoam Postavsky <npostavs@gmail.com>2018-02-05 19:36:27 -0500
committerNoam Postavsky <npostavs@gmail.com>2018-02-07 20:17:50 -0500
commit04c5bd5b1f1dc07994d70caa640a07da6b5a54b5 (patch)
treed506276ecc406bb81c25e0f2ea83dc139c6f8c67 /src
parente209034536b11fbbba19f46a45f6afc316890a5d (diff)
downloademacs-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 'src')
-rw-r--r--src/process.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/process.c b/src/process.c
index 8a438cfeb8b..c561d01060c 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1618,9 +1618,8 @@ to make it unique.
:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
with the process. Process output goes at end of that buffer, unless
-you specify an output stream or filter function to handle the output.
-BUFFER may be also nil, meaning that this process is not associated
-with any buffer.
+you specify a filter function to handle the output. BUFFER may be
+also nil, meaning that this process is not associated with any buffer.
:command COMMAND -- COMMAND is a list starting with the program file
name, followed by strings to give to the program as arguments.
@@ -2310,8 +2309,8 @@ arguments are defined:
:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
with the process. Process output goes at the end of that buffer,
-unless you specify an output stream or filter function to handle the
-output. If BUFFER is not given, the value of NAME is used.
+unless you specify a filter function to handle the output. If BUFFER
+is not given, the value of NAME is used.
:coding CODING -- If CODING is a symbol, it specifies the coding
system used for both reading and writing for this process. If CODING
@@ -3025,8 +3024,8 @@ the value of PORT is used.
:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
with the process. Process output goes at the end of that buffer,
-unless you specify an output stream or filter function to handle the
-output. If BUFFER is not given, the value of NAME is used.
+unless you specify a filter function to handle the output. If BUFFER
+is not given, the value of NAME is used.
:coding CODING -- If CODING is a symbol, it specifies the coding
system used for both reading and writing for this process. If CODING
@@ -3688,9 +3687,8 @@ to make it unique.
:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
with the process. Process output goes at end of that buffer, unless
-you specify an output stream or filter function to handle the output.
-BUFFER may be also nil, meaning that this process is not associated
-with any buffer.
+you specify a filter function to handle the output. BUFFER may be
+also nil, meaning that this process is not associated with any buffer.
:host HOST -- HOST is name of the host to connect to, or its IP
address. The symbol `local' specifies the local host. If specified