diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-07-14 01:17:35 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-07-14 01:17:35 +0000 |
commit | f0856b6f497e8ae2081d0de75c7d3ee414c4a924 (patch) | |
tree | 4009a681b38e4de5020bb3ddee009e13d806b77e /lisp/custom.el | |
parent | d5b3141dac8211b99290cb25299c0e77673038d1 (diff) | |
download | emacs-f0856b6f497e8ae2081d0de75c7d3ee414c4a924.tar.gz |
(custom-initialize-safe-set, custom-initialize-safe-default): Further doc fixes.
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 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) |