diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c index e306b2ae9ec..4dafee8cbed 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4581,8 +4581,8 @@ DEFUN ("accept-process-output", Faccept_process_output, Saccept_process_output, | |||
| 4581 | 0, 4, 0, | 4581 | 0, 4, 0, |
| 4582 | doc: /* Allow any pending output from subprocesses to be read by Emacs. | 4582 | doc: /* Allow any pending output from subprocesses to be read by Emacs. |
| 4583 | It is given to their filter functions. | 4583 | It is given to their filter functions. |
| 4584 | Optional argument PROCESS means do not return until output has been | 4584 | Optional argument PROCESS means to return only after output is |
| 4585 | received from PROCESS. | 4585 | received from PROCESS or PROCESS closes the connection. |
| 4586 | 4586 | ||
| 4587 | Optional second argument SECONDS and third argument MILLISEC | 4587 | Optional second argument SECONDS and third argument MILLISEC |
| 4588 | specify a timeout; return after that much time even if there is | 4588 | specify a timeout; return after that much time even if there is |
| @@ -4594,7 +4594,8 @@ If optional fourth argument JUST-THIS-ONE is non-nil, accept output | |||
| 4594 | from PROCESS only, suspending reading output from other processes. | 4594 | from PROCESS only, suspending reading output from other processes. |
| 4595 | If JUST-THIS-ONE is an integer, don't run any timers either. | 4595 | If JUST-THIS-ONE is an integer, don't run any timers either. |
| 4596 | Return non-nil if we received any output from PROCESS (or, if PROCESS | 4596 | Return non-nil if we received any output from PROCESS (or, if PROCESS |
| 4597 | is nil, from any process) before the timeout expired. */) | 4597 | is nil, from any process) before the timeout expired or the |
| 4598 | corresponding connection was closed. */) | ||
| 4598 | (Lisp_Object process, Lisp_Object seconds, Lisp_Object millisec, | 4599 | (Lisp_Object process, Lisp_Object seconds, Lisp_Object millisec, |
| 4599 | Lisp_Object just_this_one) | 4600 | Lisp_Object just_this_one) |
| 4600 | { | 4601 | { |