diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/processes.texi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 61de77d0662..4c7853bae86 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -1042,7 +1042,7 @@ this is either @code{nil}, which means the process is running or | |||
| 1042 | @end smallexample | 1042 | @end smallexample |
| 1043 | @end defun | 1043 | @end defun |
| 1044 | 1044 | ||
| 1045 | @defun process-contact process &optional key | 1045 | @defun process-contact process &optional key no-block |
| 1046 | This function returns information about how a network, a serial, or a | 1046 | This function returns information about how a network, a serial, or a |
| 1047 | pipe connection was set up. When @var{key} is @code{nil}, it returns | 1047 | pipe connection was set up. When @var{key} is @code{nil}, it returns |
| 1048 | @code{(@var{hostname} @var{service})} for a network connection, | 1048 | @code{(@var{hostname} @var{service})} for a network connection, |
| @@ -1086,6 +1086,11 @@ connection, see @code{make-pipe-process} for the list of keys. | |||
| 1086 | 1086 | ||
| 1087 | If @var{key} is a keyword, the function returns the value corresponding | 1087 | If @var{key} is a keyword, the function returns the value corresponding |
| 1088 | to that keyword. | 1088 | to that keyword. |
| 1089 | |||
| 1090 | If @var{process} is a non-blocking network stream that hasn't been | ||
| 1091 | fully set up yet, then this function will block until that has | ||
| 1092 | happened. If given the optional @var{no-block} parameter, this | ||
| 1093 | function will return @code{nil} instead of blocking. | ||
| 1089 | @end defun | 1094 | @end defun |
| 1090 | 1095 | ||
| 1091 | @defun process-id process | 1096 | @defun process-id process |