Mercurial > emacs
changeset 100964:cbdc48a807f3
(universal-coding-system-argument): last-input-char need not be a char.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 08 Jan 2009 04:07:31 +0000 |
parents | 0d2e4142fb60 |
children | 50cbf7fa2d88 |
files | lisp/international/mule-cmds.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/international/mule-cmds.el Thu Jan 08 04:02:10 2009 +0000 +++ b/lisp/international/mule-cmds.el Thu Jan 08 04:07:31 2009 +0000 @@ -288,7 +288,7 @@ 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)