diff options
| author | Po Lu | 2024-06-10 21:15:45 +0800 |
|---|---|---|
| committer | Po Lu | 2024-06-10 21:15:45 +0800 |
| commit | 485b01429f1ed54aae617a6fff1d4371d2247beb (patch) | |
| tree | 5393336498d9b0f8322611f586f8bf4ef6930b5d /src/process.c | |
| parent | 5df7506a4923bb5b7fa47f62b4af41075b1ba7c5 (diff) | |
| download | emacs-485b01429f1ed54aae617a6fff1d4371d2247beb.tar.gz emacs-485b01429f1ed54aae617a6fff1d4371d2247beb.zip | |
; * src/process.c (read_process_output): Check in missing hunk.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 6263 | friends don't expect current-buffer to be changed from under them. */ | 6263 | friends don't expect current-buffer to be changed from under them. */ |
| 6264 | record_unwind_current_buffer (); | 6264 | record_unwind_current_buffer (); |
| 6265 | 6265 | ||
| 6266 | if (read_process_output_fast && EQ (p->filter, Qinternal_default_process_filter)) | 6266 | if (fast_read_process_output && EQ (p->filter, Qinternal_default_process_filter)) |
| 6267 | read_and_insert_process_output (p, chars, nbytes, coding); | 6267 | read_and_insert_process_output (p, chars, nbytes, coding); |
| 6268 | else | 6268 | else |
| 6269 | read_and_dispose_of_process_output (p, chars, nbytes, coding); | 6269 | read_and_dispose_of_process_output (p, chars, nbytes, coding); |