* 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'.
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,