diff options
| author | Jesper Harder | 2004-11-21 19:39:59 +0000 |
|---|---|---|
| committer | Jesper Harder | 2004-11-21 19:39:59 +0000 |
| commit | c1aa486418412c6e6eff46ceb7ff8b9276fa5263 (patch) | |
| tree | aa5c435d75a9f2b4fc61a5f442799e5b93a79804 | |
| parent | ca7cefe702f23b3a6197965479f7b47ec3566c9e (diff) | |
| download | emacs-c1aa486418412c6e6eff46ceb7ff8b9276fa5263.tar.gz emacs-c1aa486418412c6e6eff46ceb7ff8b9276fa5263.zip | |
(Synchronous Processes, Output from Processes):
Markup fix.
| -rw-r--r-- | lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/processes.texi | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 5e5cdfc8955..5bfe3793e73 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-11-21 Jesper Harder <harder@ifa.au.dk> | ||
| 2 | |||
| 3 | * processes.texi (Synchronous Processes, Output from Processes): | ||
| 4 | Markup fix. | ||
| 5 | |||
| 1 | 2004-11-20 Richard M. Stallman <rms@gnu.org> | 6 | 2004-11-20 Richard M. Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * positions.texi (Skipping Characters): skip-chars-forward | 8 | * positions.texi (Skipping Characters): skip-chars-forward |
diff --git a/lispref/processes.texi b/lispref/processes.texi index 35041677b80..6b772819b81 100644 --- a/lispref/processes.texi +++ b/lispref/processes.texi | |||
| @@ -328,7 +328,7 @@ The arguments are handled in almost the same way as for | |||
| 328 | 328 | ||
| 329 | Some file handlers may not support all combinations and forms of the | 329 | Some file handlers may not support all combinations and forms of the |
| 330 | arguments @var{infile}, @var{buffer}, and @var{display}. For example, | 330 | arguments @var{infile}, @var{buffer}, and @var{display}. For example, |
| 331 | some file handlers might behave as if @var{display} was nil, | 331 | some file handlers might behave as if @var{display} was @code{nil}, |
| 332 | regardless of the value actually passed. As another example, some | 332 | regardless of the value actually passed. As another example, some |
| 333 | file handlers might not support separating standard output and error | 333 | file handlers might not support separating standard output and error |
| 334 | output by way of the @var{buffer} argument. | 334 | output by way of the @var{buffer} argument. |
| @@ -975,7 +975,7 @@ On some systems, when Emacs reads the output from a subprocess, the | |||
| 975 | output data is read in very small blocks, potentially resulting in | 975 | output data is read in very small blocks, potentially resulting in |
| 976 | very poor performance. This behaviour can be remedied to some extent | 976 | very poor performance. This behaviour can be remedied to some extent |
| 977 | by setting the variable @var{process-adaptive-read-buffering} to a | 977 | by setting the variable @var{process-adaptive-read-buffering} to a |
| 978 | non-nil value (the default), as it will automatically delay reading | 978 | non-@code{nil} value (the default), as it will automatically delay reading |
| 979 | from such processes, thus allowing them to produce more output before | 979 | from such processes, thus allowing them to produce more output before |
| 980 | Emacs tries to read it. | 980 | Emacs tries to read it. |
| 981 | @end defvar | 981 | @end defvar |
| @@ -1316,7 +1316,7 @@ nonzero @var{millisec}. | |||
| 1316 | 1316 | ||
| 1317 | @c Emacs 21.4 feature | 1317 | @c Emacs 21.4 feature |
| 1318 | If @var{process} is a process, and the argument @var{just-this-one} is | 1318 | If @var{process} is a process, and the argument @var{just-this-one} is |
| 1319 | non-nil, only output from that process is handled, suspending output | 1319 | non-@code{nil}, only output from that process is handled, suspending output |
| 1320 | from other processes until some output has been received from that | 1320 | from other processes until some output has been received from that |
| 1321 | process or the timeout expires. If @var{just-this-one} is an integer, | 1321 | process or the timeout expires. If @var{just-this-one} is an integer, |
| 1322 | also inhibit running timers. This feature is generally not | 1322 | also inhibit running timers. This feature is generally not |