aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorEli Zaretskii2021-05-25 22:29:11 +0300
committerEli Zaretskii2021-05-25 22:29:11 +0300
commitdd79a5050a9f3b37a663c8bcd64f228d0e8711d2 (patch)
tree1a4db2b844898693f70a29d5d1b3d7636ef94884 /src/process.c
parentcaf8eb0381d1fa9f2b683db7018c5438ff99c83a (diff)
downloademacs-dd79a5050a9f3b37a663c8bcd64f228d0e8711d2.tar.gz
emacs-dd79a5050a9f3b37a663c8bcd64f228d0e8711d2.zip
Fix documentation of a recent change
* src/process.c (syms_of_process) <process-prioritize-lower-fds>: Doc fix. * etc/NEWS: Reword the entry for 'process-prioritize-lower-fds'.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c
index 2f32eadd50d..c354f3a90da 100644
--- a/src/process.c
+++ b/src/process.c
@@ -8495,10 +8495,13 @@ The variable takes effect when `start-process' is called. */);
8495 Vprocess_adaptive_read_buffering = Qt; 8495 Vprocess_adaptive_read_buffering = Qt;
8496 8496
8497 DEFVAR_BOOL ("process-prioritize-lower-fds", process_prioritize_lower_fds, 8497 DEFVAR_BOOL ("process-prioritize-lower-fds", process_prioritize_lower_fds,
8498 doc: /* If nil, try to not prioritize reading from any specific process. 8498 doc: /* Whether to start checking for subprocess output from first file descriptor.
8499Emacs loops through file descriptors to receive data from subprocesses. After 8499Emacs loops through file descriptors to check for output from subprocesses.
8500accepting output from the first file descriptor with available data, restart the 8500If this variable is nil, the default, then after accepting output from a
8501loop from the file descriptor 0 if this option is non-nil. */); 8501subprocess, Emacs will continue checking the rest of descriptors, starting
8502from the one following the descriptor it just read. If this variable is
8503non-nil, Emacs will always restart the loop from the first file descriptor,
8504thus favoring processes with lower descriptors. */);
8502 process_prioritize_lower_fds = 0; 8505 process_prioritize_lower_fds = 0;
8503 8506
8504 DEFVAR_LISP ("interrupt-process-functions", Vinterrupt_process_functions, 8507 DEFVAR_LISP ("interrupt-process-functions", Vinterrupt_process_functions,