diff options
| author | Karl Heuer | 1995-03-08 22:49:11 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-03-08 22:49:11 +0000 |
| commit | 30bef8ec5105f7a67623c4d840b00e67f2da487c (patch) | |
| tree | e1fbc6b32c33c6d18623e3ee40979bba864d2f24 /src | |
| parent | 4524b161f647963fe827f886d0947d28bbe6bb36 (diff) | |
| download | emacs-30bef8ec5105f7a67623c4d840b00e67f2da487c.tar.gz emacs-30bef8ec5105f7a67623c4d840b00e67f2da487c.zip | |
(read_input_waiting): Fix Lisp_Object vs. int problem.
Diffstat (limited to 'src')
| -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 () | |||
| 2420 | /* Don't look at input that follows a C-g too closely. | 2420 | /* Don't look at input that follows a C-g too closely. |
| 2421 | This reduces lossage due to autorepeat on C-g. */ | 2421 | This reduces lossage due to autorepeat on C-g. */ |
| 2422 | if (buf[i].kind == ascii_keystroke | 2422 | if (buf[i].kind == ascii_keystroke |
| 2423 | && XINT(buf[i].code) == quit_char) | 2423 | && buf[i].code == quit_char) |
| 2424 | break; | 2424 | break; |
| 2425 | } | 2425 | } |
| 2426 | } | 2426 | } |