aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
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,