]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/process.c (read_and_dispose_of_process_output): Fix style.
authorEli Zaretskii <eliz@gnu.org>
Tue, 11 Jun 2024 07:37:31 +0000 (10:37 +0300)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Jun 2024 09:28:03 +0000 (11:28 +0200)
(cherry picked from commit a95f9e5bc64535894dc0c8880408d4466ae2ba89)

src/process.c

index b6ec114e2b38a2c5b32fadf9dbffb1b799e59c9f..43a02affa90ad4d810e422987cbc6fc4d3677b95 100644 (file)
@@ -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);