aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorNoam Postavsky2018-02-05 19:36:27 -0500
committerNoam Postavsky2018-02-07 20:17:50 -0500
commit04c5bd5b1f1dc07994d70caa640a07da6b5a54b5 (patch)
treed506276ecc406bb81c25e0f2ea83dc139c6f8c67 /src/process.c
parente209034536b11fbbba19f46a45f6afc316890a5d (diff)
downloademacs-04c5bd5b1f1dc07994d70caa640a07da6b5a54b5.tar.gz
emacs-04c5bd5b1f1dc07994d70caa640a07da6b5a54b5.zip
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/process.c')
-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.
1618 1618
1619:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate 1619:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
1620with the process. Process output goes at end of that buffer, unless 1620with the process. Process output goes at end of that buffer, unless
1621you specify an output stream or filter function to handle the output. 1621you specify a filter function to handle the output. BUFFER may be
1622BUFFER may be also nil, meaning that this process is not associated 1622also nil, meaning that this process is not associated with any buffer.
1623with any buffer.
1624 1623
1625:command COMMAND -- COMMAND is a list starting with the program file 1624:command COMMAND -- COMMAND is a list starting with the program file
1626name, followed by strings to give to the program as arguments. 1625name, followed by strings to give to the program as arguments.
@@ -2310,8 +2309,8 @@ arguments are defined:
2310 2309
2311:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate 2310:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
2312with the process. Process output goes at the end of that buffer, 2311with the process. Process output goes at the end of that buffer,
2313unless you specify an output stream or filter function to handle the 2312unless you specify a filter function to handle the output. If BUFFER
2314output. If BUFFER is not given, the value of NAME is used. 2313is not given, the value of NAME is used.
2315 2314
2316:coding CODING -- If CODING is a symbol, it specifies the coding 2315:coding CODING -- If CODING is a symbol, it specifies the coding
2317system used for both reading and writing for this process. If CODING 2316system used for both reading and writing for this process. If CODING
@@ -3025,8 +3024,8 @@ the value of PORT is used.
3025 3024
3026:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate 3025:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
3027with the process. Process output goes at the end of that buffer, 3026with the process. Process output goes at the end of that buffer,
3028unless you specify an output stream or filter function to handle the 3027unless you specify a filter function to handle the output. If BUFFER
3029output. If BUFFER is not given, the value of NAME is used. 3028is not given, the value of NAME is used.
3030 3029
3031:coding CODING -- If CODING is a symbol, it specifies the coding 3030:coding CODING -- If CODING is a symbol, it specifies the coding
3032system used for both reading and writing for this process. If CODING 3031system used for both reading and writing for this process. If CODING
@@ -3688,9 +3687,8 @@ to make it unique.
3688 3687
3689:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate 3688:buffer BUFFER -- BUFFER is the buffer (or buffer-name) to associate
3690with the process. Process output goes at end of that buffer, unless 3689with the process. Process output goes at end of that buffer, unless
3691you specify an output stream or filter function to handle the output. 3690you specify a filter function to handle the output. BUFFER may be
3692BUFFER may be also nil, meaning that this process is not associated 3691also nil, meaning that this process is not associated with any buffer.
3693with any buffer.
3694 3692
3695:host HOST -- HOST is name of the host to connect to, or its IP 3693:host HOST -- HOST is name of the host to connect to, or its IP
3696address. The symbol `local' specifies the local host. If specified 3694address. The symbol `local' specifies the local host. If specified