aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love <[email protected]>2000-12-07 12:12:08 +0000
committerDave Love <[email protected]>2000-12-07 12:12:08 +0000
commit003dabb730091d9e8d668e72b587c5bd3797536f (patch)
tree4963b84026dfc61ed33c6bb08ea788659c4901dd
parentaae25c8cb6b65026ddf8e2731bf9a6ea32bc4230 (diff)
(mailcap-download-directory): Fix :type.
-rw-r--r--lisp/gnus/mailcap.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/gnus/mailcap.el b/lisp/gnus/mailcap.el
index cd31fd6a82..3d0d599b2f 100644
--- a/lisp/gnus/mailcap.el
+++ b/lisp/gnus/mailcap.el
@@ -273,8 +273,10 @@ is a string or list of strings, it represents a shell command to run
to return a true or false shell value for the validity.")
(defcustom mailcap-download-directory nil
- "*Where downloaded files should go by default."
- :type 'directory
+ "*Directory to which `mailcap-save-binary-file' downloads files by default.
+Nil means your home directory."
+ :type '(choice (const :tag "Home directory" nil)
+ directory)
:group 'mailcap)
;;;