summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2005-07-14 01:17:35 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2005-07-14 01:17:35 +0000
commit62106a60216d4b2da3c731cd577cd2738889f654 (patch)
tree9323d6b6042555efde5c7244580c69c65b3cdf64 /lisp/custom.el
parentd4bf03f3735d39eefa79b1ef3c6a3c1a37f3ab90 (diff)
downloademacs-62106a60216d4b2da3c731cd577cd2738889f654.tar.gz
(custom-initialize-safe-set, custom-initialize-safe-default): Further doc fixes.
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 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)