(wait_reading_process_input): Don't call
wait_reading_process_input_1 if time_limit is -1.
This commit is contained in:
parent
b0764b2d69
commit
4abca5e732
1 changed files with 2 additions and 1 deletions
|
@ -2108,7 +2108,8 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
|
|||
timeout_reduced_for_timers = 1;
|
||||
}
|
||||
}
|
||||
else
|
||||
/* If time_limit is -1, we are not going to wait at all. */
|
||||
else if (time_limit != -1)
|
||||
{
|
||||
/* This is so a breakpoint can be put here. */
|
||||
wait_reading_process_input_1 ();
|
||||
|
|
Loading…
Add table
Reference in a new issue