comparison lisp/mail/rmailmm.el @ 101890:4f858364bb26

(rmail-mime-attachment-dirs-alist): Use temporary-file-directory.
author Chong Yidong <cyd@stupidchicken.com>
date Sat, 07 Feb 2009 21:29:17 +0000
parents 50eed64d8f54
children 562b3a7e1016
comparison
equal deleted inserted replaced
101889:adecc9a8b8fd 101890:4f858364bb26
57 job is done." 57 job is done."
58 :type 'list 58 :type 'list
59 :group 'mime) 59 :group 'mime)
60 60
61 (defcustom rmail-mime-attachment-dirs-alist 61 (defcustom rmail-mime-attachment-dirs-alist
62 '(("text/.*" "~/Documents") 62 `(("text/.*" "~/Documents")
63 ("image/.*" "~/Pictures") 63 ("image/.*" "~/Pictures")
64 (".*" "~/Desktop" "~" "/tmp")) 64 (".*" "~/Desktop" "~" ,temporary-file-directory))
65 "Default directories to save attachments into. 65 "Default directories to save attachments into.
66 Each media type may have it's own list of directories in order of 66 Each media type may have it's own list of directories in order of
67 preference. The first existing directory in the list will be 67 preference. The first existing directory in the list will be
68 used." 68 used."
69 :type 'list 69 :type 'list