Mercurial > emacs
changeset 104982:f26e1b8ad86e
(dos-reevaluate-defcustoms): Comment out the reevaluation of trash-directory.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 12 Sep 2009 09:45:36 +0000 |
parents | f66e7a565db0 |
children | bac545c6b292 |
files | lisp/dos-fns.el |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/dos-fns.el Sat Sep 12 09:40:15 2009 +0000 +++ b/lisp/dos-fns.el Sat Sep 12 09:45:36 2009 +0000 @@ -224,8 +224,11 @@ ;; see if the list of defcustom's below is up to date, run the command ;; "M-x apropos-value RET ~/\. RET". (defun dos-reevaluate-defcustoms () - ;; This was computed at dump time. - (custom-reevaluate-setting 'trash-directory)) + ;; This is not needed in Emacs 23.2 and later, as trash-directory is + ;; initialized as nil. But something like this might become + ;; necessary in the future, so I'm keeping it here as a reminder. + ;(custom-reevaluate-setting 'trash-directory) + ) (add-hook 'before-init-hook 'dos-reevaluate-defcustoms)