summaryrefslogtreecommitdiff
path: root/lisp/mail/sendmail.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-04-03 04:51:35 +0000
committerRichard M. Stallman <rms@gnu.org>1996-04-03 04:51:35 +0000
commit3943fa098eb21ae5f536a9dcd81b5b59aa37df80 (patch)
tree743d0f693ca2770807da92bf3338731c08d0cca1 /lisp/mail/sendmail.el
parent321eb232a3c24f8017609e586c7d84a185e21be7 (diff)
downloademacs-3943fa098eb21ae5f536a9dcd81b5b59aa37df80.tar.gz
(mail): Once again set default dir to home dir.
Diffstat (limited to 'lisp/mail/sendmail.el')
-rw-r--r--lisp/mail/sendmail.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 5543ac198ab..a8185e1f557 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -1022,8 +1022,9 @@ The seventh argument ACTIONS is a list of actions to take
(pop-to-buffer "*mail*")
;; Put the auto-save file in the home dir
;; to avoid any danger that it can't be written.
- (let ((default-directory "~/"))
- (auto-save-mode auto-save-default))
+ (if (file-exists-p (expand-file-name "~/"))
+ (setq default-directory (expand-file-name "~/")))
+ (auto-save-mode auto-save-default)
(mail-mode)
;; Disconnect the buffer from its visited file
;; (in case the user has actually visited a file *mail*).