From: YAMAMOTO Mitsuharu Date: Tue, 12 Apr 2005 08:07:13 +0000 (+0000) Subject: (poll_for_input) [SYNC_INPUT]: Don't call poll_for_input_1. Set X-Git-Tag: ttn-vms-21-2-B4~1043 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a42bf89089cbf64b48d3eaeafbaa9a0157177fd8;p=emacs.git (poll_for_input) [SYNC_INPUT]: Don't call poll_for_input_1. Set interrupt_input_pending to 1 instead. --- diff --git a/src/keyboard.c b/src/keyboard.c index 07b2f991c38..0eb82533120 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -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 */