]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_key_sequence): Fix type error.
authorDave Love <fx@gnu.org>
Thu, 5 Sep 2002 16:59:35 +0000 (16:59 +0000)
committerDave Love <fx@gnu.org>
Thu, 5 Sep 2002 16:59:35 +0000 (16:59 +0000)
src/keyboard.c

index ba1705446ab3f94a3e5c3fb328eeb2aec4da735b..a578c05e3bc15157b92eba6948c11fbe9d15d4b5 100644 (file)
@@ -8959,7 +8959,7 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
       if (first_binding == nmaps && ! function_key_possible
          && ! key_translation_possible
          && INTEGERP (key)
-         && ((CHARACTERP (XINT (key) & ~CHAR_MODIFIER_MASK)
+         && ((CHARACTERP (make_number (XINT (key) & ~CHAR_MODIFIER_MASK))
               && UPPERCASEP (XINT (key) & ~CHAR_MODIFIER_MASK))
              || (XINT (key) & shift_modifier)))
        {