changeset 103615:fe1b52515c0f

* files.el (trash-directory): Fix defcustom type.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 28 Jun 2009 16:09:46 +0000
parents 64011e3b89f5
children af77bf73dfe0
files lisp/ChangeLog lisp/files.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sun Jun 28 15:32:20 2009 +0000
+++ b/lisp/ChangeLog	Sun Jun 28 16:09:46 2009 +0000
@@ -1,3 +1,7 @@
+2009-06-28  David De La Harpe Golden  <david@harpegolden.net>
+
+	* files.el (trash-directory): Fix defcustom type.
+
 2009-03-28  Juri Linkov  <juri@jurta.org>
 
 	* help-fns.el (describe-function-1): Correctly locate adviced
--- a/lisp/files.el	Sun Jun 28 15:32:20 2009 +0000
+++ b/lisp/files.el	Sun Jun 28 16:09:46 2009 +0000
@@ -6016,7 +6016,7 @@
 is not defined.
 Relative paths are interpreted relative to `default-directory'.
 If the value is nil, Emacs uses a freedesktop.org-style trashcan."
-  :type 'directory
+  :type  '(choice (const nil) directory)
   :group 'auto-save
   :version "23.2")