]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_input_waiting): Fix Lisp_Object vs. int problem.
authorKarl Heuer <kwzh@gnu.org>
Wed, 8 Mar 1995 22:49:11 +0000 (22:49 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 8 Mar 1995 22:49:11 +0000 (22:49 +0000)
src/sysdep.c

index 8dfb60d59eae0926fe9da98afc348031f78225f8..74c58559a16e8938568df3b82db59269f8190c57 100644 (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;
        }
     }