Mercurial > emacs
changeset 10946:aa943e2ea495
(read_input_waiting): Fix Lisp_Object vs. int problem.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 08 Mar 1995 22:49:11 +0000 |
parents | dbf1aab47502 |
children | e805ef6b931c |
files | src/sysdep.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/sysdep.c Wed Mar 08 05:50:47 1995 +0000 +++ b/src/sysdep.c Wed Mar 08 22:49:11 1995 +0000 @@ -2420,7 +2420,7 @@ /* 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; } }