diff options
| author | Kim F. Storm | 2004-02-06 23:52:36 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-02-06 23:52:36 +0000 |
| commit | 3af5525137d6c99f342ffbeef63eaa39bca18c59 (patch) | |
| tree | 7990284ae15e97a4eb753f7222c90b953749317b /src/process.c | |
| parent | 98c6e531edf6d405da2aa758f198838dee3d4402 (diff) | |
| download | emacs-3af5525137d6c99f342ffbeef63eaa39bca18c59.tar.gz emacs-3af5525137d6c99f342ffbeef63eaa39bca18c59.zip | |
(wait_reading_process_input): Don't do adaptive read
buffering if waiting for a specific process.
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 52d9bf3fff5..0db0638f85d 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4262,7 +4262,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 4262 | else | 4262 | else |
| 4263 | Available = input_wait_mask; | 4263 | Available = input_wait_mask; |
| 4264 | check_connect = (num_pending_connects > 0); | 4264 | check_connect = (num_pending_connects > 0); |
| 4265 | check_delay = process_output_delay_count; | 4265 | check_delay = wait_channel >= 0 ? 0 : process_output_delay_count; |
| 4266 | } | 4266 | } |
| 4267 | 4267 | ||
| 4268 | /* If frame size has changed or the window is newly mapped, | 4268 | /* If frame size has changed or the window is newly mapped, |