From: Karl Heuer Date: Wed, 8 Mar 1995 22:49:11 +0000 (+0000) Subject: (read_input_waiting): Fix Lisp_Object vs. int problem. X-Git-Tag: emacs-19.34~4912 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=30bef8ec5105f7a67623c4d840b00e67f2da487c;p=emacs.git (read_input_waiting): Fix Lisp_Object vs. int problem. --- 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; } }