diff options
| author | Stefan Kangas | 2025-02-09 22:50:34 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2025-02-10 21:55:11 +0100 |
| commit | 8a669b6be523e043423b81571a8c94cb49ccc8e5 (patch) | |
| tree | 6393c95b82d86856c1cb47af4aa81ba68739063c /src/process.c | |
| parent | af528d9ea40d027fa0100578b8b753b1ec3c0432 (diff) | |
| download | emacs-8a669b6be523e043423b81571a8c94cb49ccc8e5.tar.gz emacs-8a669b6be523e043423b81571a8c94cb49ccc8e5.zip | |
Set process-adaptive-read-buffering to nil by default
* src/process.c (syms_of_process) <process-adaptive-read-buffering>:
Set the default to nil. (Bug#75574)
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. | |||
| 8878 | If the value is t, the delay is reset after each write to the process; any other | 8878 | If the value is t, the delay is reset after each write to the process; any other |
| 8879 | non-nil value means that the delay is not reset on write. | 8879 | non-nil value means that the delay is not reset on write. |
| 8880 | The variable takes effect when `start-process' is called. */); | 8880 | The variable takes effect when `start-process' is called. */); |
| 8881 | Vprocess_adaptive_read_buffering = Qt; | 8881 | Vprocess_adaptive_read_buffering = Qnil; |
| 8882 | 8882 | ||
| 8883 | DEFVAR_BOOL ("process-prioritize-lower-fds", process_prioritize_lower_fds, | 8883 | DEFVAR_BOOL ("process-prioritize-lower-fds", process_prioritize_lower_fds, |
| 8884 | doc: /* Whether to start checking for subprocess output from first file descriptor. | 8884 | doc: /* Whether to start checking for subprocess output from first file descriptor. |