From: Luc Teirlinck Date: Thu, 14 Jul 2005 01:17:35 +0000 (+0000) Subject: (custom-initialize-safe-set, custom-initialize-safe-default): Further doc fixes. X-Git-Tag: emacs-pretest-22.0.90~8165 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f0856b6f497e8ae2081d0de75c7d3ee414c4a924;p=emacs.git (custom-initialize-safe-set, custom-initialize-safe-default): Further doc fixes. --- diff --git a/lisp/custom.el b/lisp/custom.el index 063c882dd6f..1b94e3e3b96 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -80,8 +80,8 @@ if any, or VALUE." "Like `custom-initialize-set', but catches errors. If an error occurs during initialization, SYMBOL is set to nil and no error is thrown. This is meant for use in pre-loaded files -where some variables or functions used to compute VALUE are not yet -defined. You can then re-evaluate VALUE in startup.el, for instance +where some variables or functions used to compute VALUE may not yet +be defined. You can then re-evaluate VALUE in startup.el, for instance using `custom-reevaluate-setting'." (condition-case nil (custom-initialize-set symbol value) @@ -91,8 +91,8 @@ using `custom-reevaluate-setting'." "Like `custom-initialize-default', but catches errors. If an error occurs during initialization, SYMBOL is set to nil and no error is thrown. This is meant for use in pre-loaded files -where some variables or functions used to compute VALUE are not yet -defined. You can then re-evaluate VALUE in startup.el, for instance +where some variables or functions used to compute VALUE may not yet +be defined. You can then re-evaluate VALUE in startup.el, for instance using `custom-reevaluate-setting'." (condition-case nil (custom-initialize-default symbol value)