Mercurial > emacs
diff src/process.c @ 53835:ad9da392f358
(wait_reading_process_input): Don't do adaptive read
buffering if waiting for a specific process.
| author | Kim F. Storm <storm@cua.dk> |
|---|---|
| date | Fri, 06 Feb 2004 23:52:09 +0000 |
| parents | 0341435e76ce |
| children | 976d03256b41 03a73693678e |
line wrap: on
line diff
--- a/src/process.c Fri Feb 06 22:36:10 2004 +0000 +++ b/src/process.c Fri Feb 06 23:52:09 2004 +0000 @@ -4262,7 +4262,7 @@ else Available = input_wait_mask; check_connect = (num_pending_connects > 0); - check_delay = process_output_delay_count; + check_delay = wait_channel >= 0 ? 0 : process_output_delay_count; } /* If frame size has changed or the window is newly mapped,
