(quail-show-key): Fix previous change.
authorKenichi Handa <handa@m17n.org>
Thu, 1 Feb 2007 01:46:58 +0000 (01:46 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 1 Feb 2007 01:46:58 +0000 (01:46 +0000)
lisp/ChangeLog
lisp/international/quail.el

index 56bfe69..41641af 100644 (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
index 7cedcbf..a14d358 100644 (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)