diff options
| author | Eli Zaretskii | 2024-06-11 10:37:31 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-06-11 10:37:31 +0300 |
| commit | a95f9e5bc64535894dc0c8880408d4466ae2ba89 (patch) | |
| tree | d2787d5b7c37b259229feb70e1b9ecc54ce3e1b0 /src | |
| parent | 1aa83da46d1af60260b17522608eeca28efff151 (diff) | |
| download | emacs-a95f9e5bc64535894dc0c8880408d4466ae2ba89.tar.gz emacs-a95f9e5bc64535894dc0c8880408d4466ae2ba89.zip | |
; * src/process.c (read_and_dispose_of_process_output): Fix style.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 7 |
1 files 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, | |||
| 6476 | save the match data in a special nonrecursive fashion. */ | 6476 | save the match data in a special nonrecursive fashion. */ |
| 6477 | running_asynch_code = 1; | 6477 | running_asynch_code = 1; |
| 6478 | 6478 | ||
| 6479 | if (fast_read_process_output && EQ (p->filter, Qinternal_default_process_filter)) | 6479 | if (fast_read_process_output |
| 6480 | { | 6480 | && EQ (p->filter, Qinternal_default_process_filter)) |
| 6481 | read_and_insert_process_output (p, chars, nbytes, coding); | 6481 | read_and_insert_process_output (p, chars, nbytes, coding); |
| 6482 | } | ||
| 6483 | else | 6482 | else |
| 6484 | { | 6483 | { |
| 6485 | decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt); | 6484 | decode_coding_c_string (coding, (unsigned char *) chars, nbytes, Qt); |