]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-initialize-safe-set, custom-initialize-safe-default): Doc fixes.
authorLuc Teirlinck <teirllm@auburn.edu>
Thu, 14 Jul 2005 01:01:37 +0000 (01:01 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Thu, 14 Jul 2005 01:01:37 +0000 (01:01 +0000)
lisp/custom.el

index b2ab004dc8cacf4ead6eb1d00be0e2ec95285163..063c882dd6f731ddc2e6e1767297ced6792c5213 100644 (file)
@@ -80,9 +80,9 @@ 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 used to compute VALUE are not yet defined.
-You can then re-evaluate VALUE in startup.el, for instance using
-`custom-reevaluate-setting'."
+where some variables or functions used to compute VALUE are not yet
+defined. You can then re-evaluate VALUE in startup.el, for instance
+using `custom-reevaluate-setting'."
   (condition-case nil
       (custom-initialize-set symbol value)
     (error (set-default symbol nil))))
@@ -91,9 +91,9 @@ You can then re-evaluate VALUE in startup.el, for instance using
   "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 used to compute VALUE are not yet defined.
-You can then re-evaluate VALUE in startup.el, for instance using
-`custom-reevaluate-setting'."
+where some variables or functions used to compute VALUE are not yet
+defined. You can then re-evaluate VALUE in startup.el, for instance
+using `custom-reevaluate-setting'."
   (condition-case nil
       (custom-initialize-default symbol value)
     (error (set-default symbol nil))))