From 38f17cb22ee6027356b9c36f19682e36846d7c0f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 22 Mar 1996 22:06:10 +0000 Subject: [PATCH] (wait_reading_process_input): Eliminate bogus test that was trying to check read_kbd and failing. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index eef1c18e4eb..26cba986476 100644 --- a/src/process.c +++ b/src/process.c @@ -2076,7 +2076,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) run timer events directly. (Callers that will immediately read keyboard events call timer_delay on their own.) */ - if (XINT (read_kbd) >= 0) + if (1) { EMACS_TIME timer_delay; int old_timers_run = timers_run; -- 2.39.2