Index: emacs/lisp/custom.el
diff -c emacs/lisp/custom.el:1.92 emacs/lisp/custom.el:1.93
*** emacs/lisp/custom.el:1.92   Mon Jul 11 06:09:37 2005
--- emacs/lisp/custom.el        Mon Jul 11 23:41:11 2005
***************
*** 680,689 ****
    (apply 'custom-theme-set-variables 'user args))
  
  (defun custom-reevaluate-setting (symbol)
!   "Reset the value of SYMBOL by re-evaluating its saved or default value.
! This is useful for variables that are defined before their default value
! can really be computed.  E.g. dumped variables whose default depends on
! run-time information."
    (funcall (or (get symbol 'custom-set) 'set-default)
           symbol
           (eval (car (or (get symbol 'saved-value) (get symbol 
'standard-value))))))
--- 680,689 ----
    (apply 'custom-theme-set-variables 'user args))
  
  (defun custom-reevaluate-setting (symbol)
!   "Reset the value of SYMBOL by re-evaluating its saved or standard value.
! Use the :set function to do so.  This is useful for customizable options
! that are defined before their standard value can really be computed.
! E.g. dumped variables whose default depends on run-time information."
    (funcall (or (get symbol 'custom-set) 'set-default)
           symbol
           (eval (car (or (get symbol 'saved-value) (get symbol 
'standard-value))))))


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

Reply via email to