From c735692325c3a841ae47121f5dbe4df5928341b4 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Mon, 10 Jun 2024 21:15:45 +0800 Subject: [PATCH] ; * src/process.c (read_process_output): Check in missing hunk. (cherry picked from commit 485b01429f1ed54aae617a6fff1d4371d2247beb) --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2