summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-03-19 23:43:50 +0000
committerRichard M. Stallman <rms@gnu.org>1996-03-19 23:43:50 +0000
commitdbc0e9d93e6f40f865076a3199503dc2a6b8cd33 (patch)
tree0fbac25efa09261d28e740b5895325b0024916fd
parent65b6f92ef3a115c228ca2e1975c8f836bf786906 (diff)
downloademacs-dbc0e9d93e6f40f865076a3199503dc2a6b8cd33.tar.gz
(wait_reading_process_input): Extract the number from read_kbd with XINT.
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 49fd0597a06..eef1c18e4eb 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 (read_kbd >= 0)
+ if (XINT (read_kbd) >= 0)
{
EMACS_TIME timer_delay;
int old_timers_run = timers_run;