]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix documentation of a recent change
authorEli Zaretskii <eliz@gnu.org>
Tue, 25 May 2021 19:29:11 +0000 (22:29 +0300)
committerEli Zaretskii <eliz@gnu.org>
Tue, 25 May 2021 19:29:11 +0000 (22:29 +0300)
* src/process.c (syms_of_process) <process-prioritize-lower-fds>:
Doc fix.

* etc/NEWS: Reword the entry for 'process-prioritize-lower-fds'.

etc/NEWS
src/process.c

index 7f9bf5c2423d2cfe19042e38229e4d62d2ebcdf1..ea74dfe2179eae7fa22461c967dbaebcb3905401 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2706,11 +2706,13 @@ the Emacs Lisp reference manual for background.
 * Lisp Changes in Emacs 28.1
 
 ---
-** New variable 'process-prioritize-lower-fds'.
-When looping through file descriptors to handle subprocess output, try
-to continue from where the previous loop left off instead of always
-beginning from file descriptor zero.  Set this variable to t to get
-the old behaviour.
+** Emacs now attempts to test for high-rate subprocess output more fairly.
+When several subprocesses produce output simultaneously at high rate,
+Emacs will now by default attempt to service them all in a round-robin
+fashion.  Set the new variable 'process-prioritize-lower-fds' to a
+non-nil value to get back the old behavior, whereby after reading
+from a subprocess, Emacs would check for output of other subprocesses
+in a way that is likely to read from the same process again.
 
 +++
 ** New function 'sxhash-equal-including-properties'.
index 2f32eadd50d594bbf49dbdf293833e9e1be175a7..c354f3a90dad3572622cc3874fae00e0e43a47a2 100644 (file)
@@ -8495,10 +8495,13 @@ The variable takes effect when `start-process' is called.  */);
   Vprocess_adaptive_read_buffering = Qt;
 
   DEFVAR_BOOL ("process-prioritize-lower-fds", process_prioritize_lower_fds,
-              doc: /* If nil, try to not prioritize reading from any specific process.
-Emacs loops through file descriptors to receive data from subprocesses.  After
-accepting output from the first file descriptor with available data, restart the
-loop from the file descriptor 0 if this option is non-nil.  */);
+              doc: /* Whether to start checking for subprocess output from first file descriptor.
+Emacs loops through file descriptors to check for output from subprocesses.
+If this variable is nil, the default, then after accepting output from a
+subprocess, Emacs will continue checking the rest of descriptors, starting
+from the one following the descriptor it just read.  If this variable is
+non-nil, Emacs will always restart the loop from the first file descriptor,
+thus favoring processes with lower descriptors.  */);
   process_prioritize_lower_fds = 0;
 
   DEFVAR_LISP ("interrupt-process-functions", Vinterrupt_process_functions,