From 30bef8ec5105f7a67623c4d840b00e67f2da487c Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 8 Mar 1995 22:49:11 +0000 Subject: [PATCH] (read_input_waiting): Fix Lisp_Object vs. int problem. --- src/sysdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysdep.c b/src/sysdep.c index 8dfb60d59ea..74c58559a16 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -2420,7 +2420,7 @@ read_input_waiting () /* Don't look at input that follows a C-g too closely. This reduces lossage due to autorepeat on C-g. */ if (buf[i].kind == ascii_keystroke - && XINT(buf[i].code) == quit_char) + && buf[i].code == quit_char) break; } } -- 2.39.5