From 2e78575e5c17f6e94c4cc1562be342e3233d1809 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 28 Jun 1998 18:57:51 +0000 Subject: [PATCH] (mail): Avoid changing auto-save file name. --- lisp/mail/sendmail.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 84a2c5a7925..4b36b2d2e93 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -1346,7 +1346,10 @@ The seventh argument ACTIONS is a list of actions to take ;; to avoid any danger that it can't be written. (if (file-exists-p (expand-file-name "~/")) (setq default-directory (expand-file-name "~/"))) - (auto-save-mode auto-save-default) + ;; Only call auto-save-mode if necessary, to avoid changing auto-save file. + (if (or (and auto-save-default (not buffer-auto-save-file-name)) + (and (not auto-save-default) buffer-auto-save-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*). -- 2.39.2