diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/processes.texi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 623be09cc63..2aca7f82a1a 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -1795,7 +1795,8 @@ until output arrives from a process. | |||
| 1795 | This function allows Emacs to read pending output from processes. The | 1795 | This function allows Emacs to read pending output from processes. The |
| 1796 | output is given to their filter functions. If @var{process} is | 1796 | output is given to their filter functions. If @var{process} is |
| 1797 | non-@code{nil} then this function does not return until some output | 1797 | non-@code{nil} then this function does not return until some output |
| 1798 | has been received from @var{process}. | 1798 | has been received from @var{process} or @var{process} has closed the |
| 1799 | connection. | ||
| 1799 | 1800 | ||
| 1800 | The arguments @var{seconds} and @var{millisec} let you specify timeout | 1801 | The arguments @var{seconds} and @var{millisec} let you specify timeout |
| 1801 | periods. The former specifies a period measured in seconds and the | 1802 | periods. The former specifies a period measured in seconds and the |
| @@ -1820,7 +1821,9 @@ speech synthesis. | |||
| 1820 | 1821 | ||
| 1821 | The function @code{accept-process-output} returns non-@code{nil} if it | 1822 | The function @code{accept-process-output} returns non-@code{nil} if it |
| 1822 | got output from @var{process}, or from any process if @var{process} is | 1823 | got output from @var{process}, or from any process if @var{process} is |
| 1823 | @code{nil}. It returns @code{nil} if the timeout expired before output | 1824 | @code{nil}; this can occur even after a process has exited if the |
| 1825 | corresponding connection contains buffered data. The function returns | ||
| 1826 | @code{nil} if the timeout expired or the connection was closed before output | ||
| 1824 | arrived. | 1827 | arrived. |
| 1825 | @end defun | 1828 | @end defun |
| 1826 | 1829 | ||