mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
(custom-initialize-safe-set, custom-initialize-safe-default): Doc fixes.
This commit is contained in:
parent
947d4ae822
commit
a042b6ae07
1 changed files with 6 additions and 6 deletions
|
|
@ -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))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue