From a9b96f81fd5f16e73cd0e7231fe4bc992068514d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 11 Jun 2024 10:37:31 +0300 Subject: [PATCH] ; * src/process.c (read_and_dispose_of_process_output): Fix style. (cherry picked from commit a95f9e5bc64535894dc0c8880408d4466ae2ba89) --- src/process.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/process.c b/src/process.c index b6ec114e2b3..43a02affa90 100644 --- a/src/process.c +++ b/src/process.c @@ -6476,10 +6476,9 @@ read_and_dispose_of_process_output (struct Lisp_Process *p, char *chars, save the match data in a special nonrecursive fashion. */ running_asynch_code = 1; - if (fast_read_process_output && EQ (p->filter, Qinternal_default_process_filter)) - { - read_and_insert_process_output (p, chars, nbytes, coding); - } + if (fast_read_process_output + && EQ (p->filter, Qinternal_default_process_filter)) + read_and_insert_process_output (p, chars, nbytes, coding); else { decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt); -- 2.39.5