From: Romain Francoise Date: Sat, 11 Mar 2006 14:42:17 +0000 (+0000) Subject: (Vprocess_adaptive_read_buffering): Doc fix. X-Git-Tag: emacs-pretest-22.0.90~3700 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=635a349655891c7c24221d8ca65ad69437c3e03e;p=emacs.git (Vprocess_adaptive_read_buffering): Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index b66d8bbf58b..6d7ef065cf8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-03-11 Romain Francoise + + * process.c (Vprocess_adaptive_read_buffering): Doc fix. + 2006-03-11 Giorgos Keramidas (tiny change) * lisp.h: Remove duplicate prototypes. Make the prototype of diff --git a/src/process.c b/src/process.c index 1c0b196b3cf..cf0845fd7af 100644 --- a/src/process.c +++ b/src/process.c @@ -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. */);