]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/process.c (read_process_output): Check in missing hunk.
authorPo Lu <luangruo@yahoo.com>
Mon, 10 Jun 2024 13:15:45 +0000 (21:15 +0800)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Jun 2024 09:24:19 +0000 (11:24 +0200)
(cherry picked from commit 485b01429f1ed54aae617a6fff1d4371d2247beb)

src/process.c

index a857e59ae0677b865fa0d9c53be57f1809ee7040..df2a0bc1a6ee7bce3df4898daf19a2b8c3e62cb9 100644 (file)
@@ -6263,7 +6263,7 @@ read_process_output (Lisp_Object proc, int channel)
      friends don't expect current-buffer to be changed from under them.  */
   record_unwind_current_buffer ();
 
-  if (read_process_output_fast && EQ (p->filter, Qinternal_default_process_filter))
+  if (fast_read_process_output && EQ (p->filter, Qinternal_default_process_filter))
     read_and_insert_process_output (p, chars, nbytes, coding);
   else
     read_and_dispose_of_process_output (p, chars, nbytes, coding);