diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-03-08 22:49:11 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-03-08 22:49:11 +0000 |
commit | 6c0707bacbb4b7a230c9d0e8735d2a5de4d35b70 (patch) | |
tree | b0a0b6a20b5698acd36691684035bd3d21d13a6e | |
parent | c14fed6dd7e4b12ec77da5c372657a2a157a84dd (diff) | |
download | emacs-6c0707bacbb4b7a230c9d0e8735d2a5de4d35b70.tar.gz |
(read_input_waiting): Fix Lisp_Object vs. int problem.
-rw-r--r-- | src/sysdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |