mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 23:10:47 -08:00
(wait_reading_process_input): Don't do adaptive read
buffering if waiting for a specific process.
This commit is contained in:
parent
98c6e531ed
commit
3af5525137
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2004-02-07 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* process.c (wait_reading_process_input): Don't do adaptive read
|
||||
buffering if waiting for a specific process.
|
||||
|
||||
2004-02-05 Luc Teirlinck <teirllm@auburn.edu>
|
||||
|
||||
* minibuf.c (Fminibufferp, Fread_from_minibuffer)
|
||||
|
|
|
|||
|
|
@ -4262,7 +4262,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
|
|||
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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue