(quail-show-key): Fix an error message.

This commit is contained in:
Kenichi Handa 2007-02-02 11:44:14 +00:00
parent 72827a91e8
commit 06d5f40963
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-02-02 Kenichi Handa <handa@m17n.org>
* international/quail.el (quail-show-key): Fix an error message.
2007-02-01 Juanma Barranquero <lekktu@gmail.com>
* faces.el (set-face-underline-p, modify-face): Rename arg

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 does not use Quail"))
(let* ((char (following-char))
(key-list (quail-find-key char)))
(cond ((consp key-list)