From: Po Lu Date: Mon, 10 Jun 2024 13:15:45 +0000 (+0800) Subject: ; * src/process.c (read_process_output): Check in missing hunk. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c735692325c3a841ae47121f5dbe4df5928341b4;p=emacs.git ; * src/process.c (read_process_output): Check in missing hunk. (cherry picked from commit 485b01429f1ed54aae617a6fff1d4371d2247beb) --- diff --git a/src/process.c b/src/process.c index a857e59ae06..df2a0bc1a6e 100644 --- a/src/process.c +++ b/src/process.c @@ -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);