read-process-output-max: Increase the default value

* src/process.c (read-process-output-max):
Increase the default value to 65536 (bug#66020).
This commit is contained in:
Dmitry Gutov 2024-06-09 02:58:19 +03:00
parent 8cf6e311b8
commit d4bbffe83d
2 changed files with 2 additions and 2 deletions

View file

@ -505,7 +505,7 @@ This function lets the user execute multiple SQL statements in one go.
It is useful, for example, when a Lisp program needs to evaluate an
entire SQL file.
+++
** The default value of 'read-process-output-max' was increased to 65536.
* Editing Changes in Emacs 30.1

View file

@ -8877,7 +8877,7 @@ amounts of data in one go.
On GNU/Linux systems, the value should not exceed
/proc/sys/fs/pipe-max-size. See pipe(7) manpage for details. */);
read_process_output_max = 4096;
read_process_output_max = 65536;
DEFVAR_BOOL ("read-process-output-fast", read_process_output_fast,
doc: /* Non-nil to optimize the insertion of process output.