(read_input_waiting): Fix Lisp_Object vs. int problem.

This commit is contained in:
Karl Heuer
1995-03-08 22:49:11 +00:00
parent 4524b161f6
commit 30bef8ec51

View File

@@ -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;
}
}