# HG changeset patch # User Luc Teirlinck # Date 1121302897 0 # Node ID 840e01598f66e470a446c5f8607b318b9bf876fb # Parent acabc71be63bbbb3c3deaa67d62d7caedcb8064d (custom-initialize-safe-set, custom-initialize-safe-default): Doc fixes. diff -r acabc71be63b -r 840e01598f66 lisp/custom.el --- a/lisp/custom.el Thu Jul 14 00:59:34 2005 +0000 +++ b/lisp/custom.el Thu Jul 14 01:01:37 2005 +0000 @@ -80,9 +80,9 @@ "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 @@ "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))))