diff options
| author | Noam Postavsky | 2018-02-05 19:36:27 -0500 |
|---|---|---|
| committer | Noam Postavsky | 2018-02-07 20:17:50 -0500 |
| commit | 04c5bd5b1f1dc07994d70caa640a07da6b5a54b5 (patch) | |
| tree | d506276ecc406bb81c25e0f2ea83dc139c6f8c67 /src/process.c | |
| parent | e209034536b11fbbba19f46a45f6afc316890a5d (diff) | |
| download | emacs-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.c | 18 |
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 |
| 1620 | with the process. Process output goes at end of that buffer, unless | 1620 | with the process. Process output goes at end of that buffer, unless |
| 1621 | you specify an output stream or filter function to handle the output. | 1621 | you specify a filter function to handle the output. BUFFER may be |
| 1622 | BUFFER may be also nil, meaning that this process is not associated | 1622 | also nil, meaning that this process is not associated with any buffer. |
| 1623 | with 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 |
| 1626 | name, followed by strings to give to the program as arguments. | 1625 | name, 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 |
| 2312 | with the process. Process output goes at the end of that buffer, | 2311 | with the process. Process output goes at the end of that buffer, |
| 2313 | unless you specify an output stream or filter function to handle the | 2312 | unless you specify a filter function to handle the output. If BUFFER |
| 2314 | output. If BUFFER is not given, the value of NAME is used. | 2313 | is 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 |
| 2317 | system used for both reading and writing for this process. If CODING | 2316 | system 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 |
| 3027 | with the process. Process output goes at the end of that buffer, | 3026 | with the process. Process output goes at the end of that buffer, |
| 3028 | unless you specify an output stream or filter function to handle the | 3027 | unless you specify a filter function to handle the output. If BUFFER |
| 3029 | output. If BUFFER is not given, the value of NAME is used. | 3028 | is 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 |
| 3032 | system used for both reading and writing for this process. If CODING | 3031 | system 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 |
| 3690 | with the process. Process output goes at end of that buffer, unless | 3689 | with the process. Process output goes at end of that buffer, unless |
| 3691 | you specify an output stream or filter function to handle the output. | 3690 | you specify a filter function to handle the output. BUFFER may be |
| 3692 | BUFFER may be also nil, meaning that this process is not associated | 3691 | also nil, meaning that this process is not associated with any buffer. |
| 3693 | with 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 |
| 3696 | address. The symbol `local' specifies the local host. If specified | 3694 | address. The symbol `local' specifies the local host. If specified |