aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-07-14 01:01:37 +0000
committerLuc Teirlinck2005-07-14 01:01:37 +0000
commita042b6ae07d702c4888dbb2481f5de239234e254 (patch)
treebd730a7b17b777831d1b318069bf6c8e260fc736
parent947d4ae822fd0925fc029317860825f54b50fb2b (diff)
downloademacs-a042b6ae07d702c4888dbb2481f5de239234e254.tar.gz
emacs-a042b6ae07d702c4888dbb2481f5de239234e254.zip
(custom-initialize-safe-set, custom-initialize-safe-default): Doc fixes.
-rw-r--r--lisp/custom.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index b2ab004dc8c..063c882dd6f 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -80,9 +80,9 @@ if any, or VALUE."
80 "Like `custom-initialize-set', but catches errors. 80 "Like `custom-initialize-set', but catches errors.
81If an error occurs during initialization, SYMBOL is set to nil 81If an error occurs during initialization, SYMBOL is set to nil
82and no error is thrown. This is meant for use in pre-loaded files 82and no error is thrown. This is meant for use in pre-loaded files
83where some variables used to compute VALUE are not yet defined. 83where some variables or functions used to compute VALUE are not yet
84You can then re-evaluate VALUE in startup.el, for instance using 84defined. You can then re-evaluate VALUE in startup.el, for instance
85`custom-reevaluate-setting'." 85using `custom-reevaluate-setting'."
86 (condition-case nil 86 (condition-case nil
87 (custom-initialize-set symbol value) 87 (custom-initialize-set symbol value)
88 (error (set-default symbol nil)))) 88 (error (set-default symbol nil))))
@@ -91,9 +91,9 @@ You can then re-evaluate VALUE in startup.el, for instance using
91 "Like `custom-initialize-default', but catches errors. 91 "Like `custom-initialize-default', but catches errors.
92If an error occurs during initialization, SYMBOL is set to nil 92If an error occurs during initialization, SYMBOL is set to nil
93and no error is thrown. This is meant for use in pre-loaded files 93and no error is thrown. This is meant for use in pre-loaded files
94where some variables used to compute VALUE are not yet defined. 94where some variables or functions used to compute VALUE are not yet
95You can then re-evaluate VALUE in startup.el, for instance using 95defined. You can then re-evaluate VALUE in startup.el, for instance
96`custom-reevaluate-setting'." 96using `custom-reevaluate-setting'."
97 (condition-case nil 97 (condition-case nil
98 (custom-initialize-default symbol value) 98 (custom-initialize-default symbol value)
99 (error (set-default symbol nil)))) 99 (error (set-default symbol nil))))