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

index 063c882dd6f731ddc2e6e1767297ced6792c5213..1b94e3e3b9641719652395d1e0bdbe26256e79d9 100644 (file)
@@ -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)