diff options
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | src/process.c | 2 |
2 files changed, 6 insertions, 1 deletions
| @@ -305,6 +305,11 @@ on the header lines are now these two: the selected window uses | |||
| 305 | 305 | ||
| 306 | ** In 'customize-face', the "Font family" attribute now supports completion. | 306 | ** In 'customize-face', the "Font family" attribute now supports completion. |
| 307 | 307 | ||
| 308 | ** 'process-adaptive-read-buffering' is now nil by default. | ||
| 309 | Setting this variable to a non-nil value reduces performance and leads | ||
| 310 | to wrong results in some cases. We believe that it is no longer useful; | ||
| 311 | please contact us if you still need it for some reason. | ||
| 312 | |||
| 308 | 313 | ||
| 309 | * Editing Changes in Emacs 31.1 | 314 | * Editing Changes in Emacs 31.1 |
| 310 | 315 | ||
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. |