Mercurial > emacs
comparison src/process.c @ 14863:b0d0cd9b5905
(wait_reading_process_input): Eliminate bogus test
that was trying to check read_kbd and failing.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 22 Mar 1996 22:06:10 +0000 |
| parents | 055c7356865b |
| children | 71c2cf461805 |
comparison
equal
deleted
inserted
replaced
| 14862:e368c0d12356 | 14863:b0d0cd9b5905 |
|---|---|
| 2074 | 2074 |
| 2075 /* If our caller will not immediately handle keyboard events, | 2075 /* If our caller will not immediately handle keyboard events, |
| 2076 run timer events directly. | 2076 run timer events directly. |
| 2077 (Callers that will immediately read keyboard events | 2077 (Callers that will immediately read keyboard events |
| 2078 call timer_delay on their own.) */ | 2078 call timer_delay on their own.) */ |
| 2079 if (XINT (read_kbd) >= 0) | 2079 if (1) |
| 2080 { | 2080 { |
| 2081 EMACS_TIME timer_delay; | 2081 EMACS_TIME timer_delay; |
| 2082 int old_timers_run = timers_run; | 2082 int old_timers_run = timers_run; |
| 2083 timer_delay = timer_check (1); | 2083 timer_delay = timer_check (1); |
| 2084 if (timers_run != old_timers_run && do_display) | 2084 if (timers_run != old_timers_run && do_display) |
