(quail-show-key): Fix previous change.

This commit is contained in:
Kenichi Handa 2007-02-01 01:46:58 +00:00
parent fdb594455b
commit fbfc1a5bd6
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-02-01 Kenichi Handa <handa@m17n.org>
* international/quail.el (quail-show-key): Signal an error if the
current input method is not using Quail.
2007-02-01 J.D. Smith <jdsmith@as.arizona.edu>
* progmodes/idlwave.el (idlwave-xml-create-sysvar-alist): Trim

View file

@ -2773,7 +2773,7 @@ If CHAR is an ASCII character and can be input by typing itself, return t."
(or current-input-method
(error "No input method is activated"))
(or (assoc current-input-method quail-package-alist)
(error "The current input method is not using Quail."))
(error "The current input method is not using Quail"))
(let* ((char (following-char))
(key-list (quail-find-key char)))
(cond ((consp key-list)