]> git.eshelyaron.com Git - emacs.git/commitdiff
(mail): Put the auto-save file in the home dir.
authorRichard M. Stallman <rms@gnu.org>
Wed, 3 Apr 1996 04:42:55 +0000 (04:42 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 3 Apr 1996 04:42:55 +0000 (04:42 +0000)
lisp/mail/sendmail.el

index 4047c18ca3847498a4765397bad7e95e8360ef73..5543ac198abab495dbcd03699f94dde048969350 100644 (file)
@@ -1020,7 +1020,10 @@ The seventh argument ACTIONS is a list of actions to take
 ;;;          (message "Auto save file for draft message exists; consider M-x mail-recover"))
 ;;;          t))
   (pop-to-buffer "*mail*")
-  (auto-save-mode auto-save-default)
+  ;; 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))
   (mail-mode)
   ;; Disconnect the buffer from its visited file
   ;; (in case the user has actually visited a file *mail*).