aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-06-20 19:29:15 +0000
committerKarl Heuer1999-06-20 19:29:15 +0000
commit2a6b2356284ea5efac6d092c51ff3fe7e0e657c8 (patch)
treeef28e79d31179a4c771fa2780fed7080a65a4902
parente91664878838316e4f68bd91fd20083f062c7466 (diff)
downloademacs-2a6b2356284ea5efac6d092c51ff3fe7e0e657c8.tar.gz
emacs-2a6b2356284ea5efac6d092c51ff3fe7e0e657c8.zip
(custom-handle-keyword): Fix error message.
-rw-r--r--lisp/custom.el2
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."
353 ((eq keyword :tag) 353 ((eq keyword :tag)
354 (put symbol 'custom-tag value)) 354 (put symbol 'custom-tag value))
355 (t 355 (t
356 (error "Unknown keyword %s" symbol)))) 356 (error "Unknown keyword %s" keyword))))
357 357
358(defun custom-add-option (symbol option) 358(defun custom-add-option (symbol option)
359 "To the variable SYMBOL add OPTION. 359 "To the variable SYMBOL add OPTION.