From 051268946f868d2ff01e821fdd092d5632afb624 Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Mon, 11 Jul 2005 23:41:11 +0000 Subject: [PATCH] (custom-reevaluate-setting): Doc fix. --- lisp/custom.el | 8 ++++---- 1 file 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)))))) -- 2.39.5