]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename new variable in process.c
authorPo Lu <luangruo@yahoo.com>
Mon, 10 Jun 2024 13:12:56 +0000 (21:12 +0800)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Jun 2024 09:24:18 +0000 (11:24 +0200)
* src/process.c (syms_of_process): Rename
read_process_output_fast to fast_read_process_output.

(cherry picked from commit 5df7506a4923bb5b7fa47f62b4af41075b1ba7c5)

src/process.c

index 9670be6427908ba04945a775687320ada17c00e9..a857e59ae0677b865fa0d9c53be57f1809ee7040 100644 (file)
@@ -8879,12 +8879,12 @@ 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 = 65536;
 
-  DEFVAR_BOOL ("read-process-output-fast", read_process_output_fast,
+  DEFVAR_BOOL ("read-process-output-fast", fast_read_process_output,
               doc: /* Non-nil to optimize the insertion of process output.
 We skip calling `internal-default-process-filter' and don't allocate
 the Lisp string that would be used as its argument.  Only affects the
 case of asynchronous process with the default filter.  */);
-  read_process_output_fast = true;
+  fast_read_process_output = true;
 
   DEFVAR_INT ("process-error-pause-time", process_error_pause_time,
              doc: /* The number of seconds to pause after handling process errors.