Index: emacs/lisp/custom.el
diff -c emacs/lisp/custom.el:1.93 emacs/lisp/custom.el:1.94
*** emacs/lisp/custom.el:1.93   Mon Jul 11 23:41:11 2005
--- emacs/lisp/custom.el        Thu Jul 14 01:01:37 2005
***************
*** 80,88 ****
    "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'."
    (condition-case nil
        (custom-initialize-set symbol value)
      (error (set-default symbol nil))))
--- 80,88 ----
    "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
! using `custom-reevaluate-setting'."
    (condition-case nil
        (custom-initialize-set symbol value)
      (error (set-default symbol nil))))
***************
*** 91,99 ****
    "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'."
    (condition-case nil
        (custom-initialize-default symbol value)
      (error (set-default symbol nil))))
--- 91,99 ----
    "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
! using `custom-reevaluate-setting'."
    (condition-case nil
        (custom-initialize-default symbol value)
      (error (set-default symbol nil))))


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to