(Vprocess_adaptive_read_buffering): Doc fix.

This commit is contained in:
Romain Francoise 2006-03-11 14:42:17 +00:00
parent 306cea3aee
commit 635a349655
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-03-11 Romain Francoise <romain@orebokech.com>
* process.c (Vprocess_adaptive_read_buffering): Doc fix.
2006-03-11 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
* lisp.h: Remove duplicate prototypes. Make the prototype of

View file

@ -6981,7 +6981,7 @@ On some systems, when Emacs reads the output from a subprocess, the output data
is read in very small blocks, potentially resulting in very poor performance.
This behavior can be remedied to some extent by setting this variable to a
non-nil value, as it will automatically delay reading from such processes, to
allowing them to produce more output before Emacs tries to read it.
allow them to produce more output before Emacs tries to read it.
If the value is t, the delay is reset after each write to the process; any other
non-nil value means that the delay is not reset on write.
The variable takes effect when `start-process' is called. */);