diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-07-11 23:41:11 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-07-11 23:41:11 +0000 |
commit | 051268946f868d2ff01e821fdd092d5632afb624 (patch) | |
tree | 6e99456358ab4364be4f40547f74a1d7daf95834 /lisp/custom.el | |
parent | 350ecc492064903c82feeff26900e784ce77e54a (diff) | |
download | emacs-051268946f868d2ff01e821fdd092d5632afb624.tar.gz |
(custom-reevaluate-setting): Doc fix.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r-- | lisp/custom.el | 8 |
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)))))) |