From: Kenichi Handa Date: Thu, 1 Feb 2007 01:46:58 +0000 (+0000) Subject: (quail-show-key): Fix previous change. X-Git-Tag: emacs-pretest-22.0.94~472 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fbfc1a5bd652f93b2a972af6cae155e56990be84;p=emacs.git (quail-show-key): Fix previous change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 56bfe69acd7..41641af1570 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-02-01 Kenichi Handa + + * international/quail.el (quail-show-key): Signal an error if the + current input method is not using Quail. + 2007-02-01 J.D. Smith * progmodes/idlwave.el (idlwave-xml-create-sysvar-alist): Trim diff --git a/lisp/international/quail.el b/lisp/international/quail.el index 7cedcbf665a..a14d358c8ad 100644 --- a/lisp/international/quail.el +++ b/lisp/international/quail.el @@ -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)