diff options
author | Karl Heuer <kwzh@gnu.org> | 1999-06-20 19:29:15 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1999-06-20 19:29:15 +0000 |
commit | 2a6b2356284ea5efac6d092c51ff3fe7e0e657c8 (patch) | |
tree | ef28e79d31179a4c771fa2780fed7080a65a4902 /lisp/custom.el | |
parent | e91664878838316e4f68bd91fd20083f062c7466 (diff) | |
download | emacs-2a6b2356284ea5efac6d092c51ff3fe7e0e657c8.tar.gz |
(custom-handle-keyword): Fix error message.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r-- | lisp/custom.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index 869681227ba..5e5c5a644b1 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -353,7 +353,7 @@ Fourth argument TYPE is the custom option type." ((eq keyword :tag) (put symbol 'custom-tag value)) (t - (error "Unknown keyword %s" symbol)))) + (error "Unknown keyword %s" keyword)))) (defun custom-add-option (symbol option) "To the variable SYMBOL add OPTION. |