1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

; * src/process.c (read_and_dispose_of_process_output): Fix style.

This commit is contained in:
Eli Zaretskii 2024-06-11 10:37:31 +03:00
parent 1aa83da46d
commit a95f9e5bc6

View 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);