diff options
author | Eli Zaretskii <eliz@gnu.org> | 2009-09-12 09:45:57 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2009-09-12 09:45:57 +0000 |
commit | 36b434ee1a0afa7a31f257cd2a8c1864ee4ae6b2 (patch) | |
tree | be02a9f1a25ea050e1bc1d51a135587a75ec92d9 /lisp/dos-fns.el | |
parent | 8f825ee6f588a48c5b51c5f886edb6bcf3ab1178 (diff) | |
download | emacs-36b434ee1a0afa7a31f257cd2a8c1864ee4ae6b2.tar.gz emacs-36b434ee1a0afa7a31f257cd2a8c1864ee4ae6b2.tar.bz2 emacs-36b434ee1a0afa7a31f257cd2a8c1864ee4ae6b2.zip |
(dos-reevaluate-defcustoms): Comment out the reevaluation of trash-directory.
Diffstat (limited to 'lisp/dos-fns.el')
-rw-r--r-- | lisp/dos-fns.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/dos-fns.el b/lisp/dos-fns.el index 3cfaa73d5a0..fadf09c70c2 100644 --- a/lisp/dos-fns.el +++ b/lisp/dos-fns.el @@ -224,8 +224,11 @@ returned unaltered." ;; 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) |