]> git.eshelyaron.com Git - emacs.git/commitdiff
(universal-coding-system-argument): last-input-char need not be a char.
authorGlenn Morris <rgm@gnu.org>
Thu, 8 Jan 2009 04:07:31 +0000 (04:07 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 8 Jan 2009 04:07:31 +0000 (04:07 +0000)
lisp/international/mule-cmds.el

index 0871a9bfdc61a49434afefda8aeaf4abc6e809db..ac35228a19edd9e6a2a48c2adad2498ce33709e0 100644 (file)
@@ -288,7 +288,7 @@ wrong, use this command again to toggle back to the right mode."
         prefix)
     ;; read-key-sequence ignores quit, so make an explicit check.
     ;; Like many places, this assumes quit == C-g, but it need not be.
-    (if (char-equal last-input-char ?\C-g)
+    (if (equal last-input-char ?\C-g)
        (keyboard-quit))
     (when (memq cmd '(universal-argument digit-argument))
       (call-interactively cmd)