(quail-show-key): Fix an error message.
authorKenichi Handa <handa@m17n.org>
Fri, 2 Feb 2007 11:44:14 +0000 (11:44 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 2 Feb 2007 11:44:14 +0000 (11:44 +0000)
lisp/ChangeLog
lisp/international/quail.el

index 8feee8c..69a187b 100644 (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
index a14d358..340c035 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 does not use Quail"))
   (let* ((char (following-char))
         (key-list (quail-find-key char)))
     (cond ((consp key-list)