1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 15:52:00 -08:00

(poll_for_input) [SYNC_INPUT]: Don't call poll_for_input_1. Set

interrupt_input_pending to 1 instead.
This commit is contained in:
YAMAMOTO Mitsuharu 2005-04-12 08:07:13 +00:00
parent 4a7d2fb88d
commit a42bf89089

View file

@ -2115,7 +2115,11 @@ poll_for_input (timer)
struct atimer *timer;
{
if (poll_suppress_count == 0)
#ifdef SYNC_INPUT
interrupt_input_pending = 1;
#else
poll_for_input_1 ();
#endif
}
#endif /* POLL_FOR_INPUT */