aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-04-12 08:07:13 +0000
committerYAMAMOTO Mitsuharu2005-04-12 08:07:13 +0000
commita42bf89089cbf64b48d3eaeafbaa9a0157177fd8 (patch)
tree0845c0038653e9fa043a6578dc43027bac023691
parent4a7d2fb88d7474b5a9e622b77265b82f38ee7eb0 (diff)
downloademacs-a42bf89089cbf64b48d3eaeafbaa9a0157177fd8.tar.gz
emacs-a42bf89089cbf64b48d3eaeafbaa9a0157177fd8.zip
(poll_for_input) [SYNC_INPUT]: Don't call poll_for_input_1. Set
interrupt_input_pending to 1 instead.
-rw-r--r--src/keyboard.c4
1 files changed, 4 insertions, 0 deletions
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)
2115 struct atimer *timer; 2115 struct atimer *timer;
2116{ 2116{
2117 if (poll_suppress_count == 0) 2117 if (poll_suppress_count == 0)
2118#ifdef SYNC_INPUT
2119 interrupt_input_pending = 1;
2120#else
2118 poll_for_input_1 (); 2121 poll_for_input_1 ();
2122#endif
2119} 2123}
2120 2124
2121#endif /* POLL_FOR_INPUT */ 2125#endif /* POLL_FOR_INPUT */