aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRomain Francoise <[email protected]>2006-03-11 14:42:17 +0000
committerRomain Francoise <[email protected]>2006-03-11 14:42:17 +0000
commit635a349655891c7c24221d8ca65ad69437c3e03e (patch)
treebe7789ad4f8d52581f0b751ac934f94da425043b /src
parent306cea3aee712f8b2d19b2bfd4011a2ecc9c1c2f (diff)
(Vprocess_adaptive_read_buffering): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/process.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b66d8bbf58..6d7ef065cf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2006-03-11 Romain Francoise <[email protected]>
+
+ * process.c (Vprocess_adaptive_read_buffering): Doc fix.
+
2006-03-11 Giorgos Keramidas <[email protected]> (tiny change)
* lisp.h: Remove duplicate prototypes. Make the prototype of
diff --git a/src/process.c b/src/process.c
index 1c0b196b3c..cf0845fd7a 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. */);