summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2005-07-11 23:41:11 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2005-07-11 23:41:11 +0000
commit051268946f868d2ff01e821fdd092d5632afb624 (patch)
tree6e99456358ab4364be4f40547f74a1d7daf95834 /lisp/custom.el
parent350ecc492064903c82feeff26900e784ce77e54a (diff)
downloademacs-051268946f868d2ff01e821fdd092d5632afb624.tar.gz
(custom-reevaluate-setting): Doc fix.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index f17ce1e5175..b2ab004dc8c 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -680,10 +680,10 @@ COMMENT is a comment string about SYMBOL."
(apply 'custom-theme-set-variables 'user args))
(defun custom-reevaluate-setting (symbol)
- "Reset the value of SYMBOL by re-evaluating its saved or default value.
-This is useful for variables that are defined before their default value
-can really be computed. E.g. dumped variables whose default depends on
-run-time information."
+ "Reset the value of SYMBOL by re-evaluating its saved or standard value.
+Use the :set function to do so. This is useful for customizable options
+that are defined before their standard value can really be computed.
+E.g. dumped variables whose default depends on run-time information."
(funcall (or (get symbol 'custom-set) 'set-default)
symbol
(eval (car (or (get symbol 'saved-value) (get symbol 'standard-value))))))