diff options
| -rw-r--r-- | doc/lispref/processes.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 7795ddfc3a0..64d2d7d49f1 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -1305,7 +1305,8 @@ that produces the same output twice in a row may send it as one batch of | |||
| 1305 | 200 characters one time, and five batches of 40 characters the next. If | 1305 | 200 characters one time, and five batches of 40 characters the next. If |
| 1306 | the filter looks for certain text strings in the subprocess output, make | 1306 | the filter looks for certain text strings in the subprocess output, make |
| 1307 | sure to handle the case where one of these strings is split across two | 1307 | sure to handle the case where one of these strings is split across two |
| 1308 | or more batches of output. | 1308 | or more batches of output; one way to do this is to insert the |
| 1309 | received text into a temporary buffer, which can then be searched. | ||
| 1309 | 1310 | ||
| 1310 | @defun set-process-filter process filter | 1311 | @defun set-process-filter process filter |
| 1311 | This function gives @var{process} the filter function @var{filter}. If | 1312 | This function gives @var{process} the filter function @var{filter}. If |