aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDmitry Gutov2024-06-09 02:58:19 +0300
committerDmitry Gutov2024-06-09 02:58:19 +0300
commitd4bbffe83d85662f3c168870df6916187f654088 (patch)
tree32a3f44c649cb9c59a34f3071e77d8a6b2c117ad /src
parent8cf6e311b87fabeba70d59647883a86c8c92b86f (diff)
downloademacs-d4bbffe83d85662f3c168870df6916187f654088.tar.gz
emacs-d4bbffe83d85662f3c168870df6916187f654088.zip
read-process-output-max: Increase the default value
* src/process.c (read-process-output-max): Increase the default value to 65536 (bug#66020).
Diffstat (limited to 'src')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index fd09bb98c60..fe4dcc531c2 100644
--- a/src/process.c
+++ b/src/process.c
@@ -8877,7 +8877,7 @@ amounts of data in one go.
8877 8877
8878On GNU/Linux systems, the value should not exceed 8878On GNU/Linux systems, the value should not exceed
8879/proc/sys/fs/pipe-max-size. See pipe(7) manpage for details. */); 8879/proc/sys/fs/pipe-max-size. See pipe(7) manpage for details. */);
8880 read_process_output_max = 4096; 8880 read_process_output_max = 65536;
8881 8881
8882 DEFVAR_BOOL ("read-process-output-fast", read_process_output_fast, 8882 DEFVAR_BOOL ("read-process-output-fast", read_process_output_fast,
8883 doc: /* Non-nil to optimize the insertion of process output. 8883 doc: /* Non-nil to optimize the insertion of process output.