From f2b35df0280f1ef885db3cd242085ceef5a370ca Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 9 Feb 2025 22:50:34 +0100 Subject: [PATCH] Set process-adaptive-read-buffering to nil by default * src/process.c (syms_of_process) : Set the default to nil. (Bug#75574) (cherry picked from commit 8a669b6be523e043423b81571a8c94cb49ccc8e5) --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index 807f06f990b..e61ec425f7e 100644 --- a/src/process.c +++ b/src/process.c @@ -8878,7 +8878,7 @@ 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. */); - Vprocess_adaptive_read_buffering = Qt; + Vprocess_adaptive_read_buffering = Qnil; DEFVAR_BOOL ("process-prioritize-lower-fds", process_prioritize_lower_fds, doc: /* Whether to start checking for subprocess output from first file descriptor. -- 2.39.5