diff options
author | Juri Linkov <juri@jurta.org> | 2006-09-02 23:31:33 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2006-09-02 23:31:33 +0000 |
commit | 00baf2eb088424793af2388ae37cf38409860bc3 (patch) | |
tree | fa81963ff6dbed32ea7d8defa1eff70916325417 /lisp/international | |
parent | cc6e650ef588019f55df553efeae6b29de1fa9d8 (diff) | |
download | emacs-00baf2eb088424793af2388ae37cf38409860bc3.tar.gz |
(quail-defrule-internal): Add missing `error' call for null key.
Diffstat (limited to 'lisp/international')
-rw-r--r-- | lisp/international/quail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/quail.el b/lisp/international/quail.el index 3998764957e..b21d2623d80 100644 --- a/lisp/international/quail.el +++ b/lisp/international/quail.el @@ -1096,7 +1096,7 @@ Optional 5th arg DECODE-MAP is a Quail decode map. Optional 6th arg PROPS is a property list annotating TRANS. See the function `quail-define-rules' for the detail." (if (null (stringp key)) - "Invalid Quail key `%s'" key) + (error "Invalid Quail key `%s'" key)) (if (not (or (numberp trans) (stringp trans) (vectorp trans) (consp trans) (symbolp trans) |