changeset 64302:8bf3ae544cd2

(custom-initialize-safe-set, custom-initialize-safe-default): Further doc fixes.
author Luc Teirlinck <teirllm@auburn.edu>
date Thu, 14 Jul 2005 01:17:35 +0000
parents ce506ff1d861
children e2e79eb7ab71
files lisp/custom.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/custom.el	Thu Jul 14 01:07:23 2005 +0000
+++ b/lisp/custom.el	Thu Jul 14 01:17:35 2005 +0000
@@ -80,8 +80,8 @@
   "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 @@
   "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)