aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mail/rmail.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 2ea8b6b27f1..3aa0391eef0 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -532,7 +532,11 @@ Instead, these commands are available:
532 (setq major-mode 'rmail-mode) 532 (setq major-mode 'rmail-mode)
533 (setq mode-name "RMAIL") 533 (setq mode-name "RMAIL")
534 (setq buffer-read-only t) 534 (setq buffer-read-only t)
535 ;; No need to auto save RMAIL files. 535 ;; No need to auto save RMAIL files in normal circumstances
536 ;; because they contain no info except attribute changes
537 ;; and deletion of messages.
538 ;; The one exception is when messages are copied into an Rmail mode buffer.
539 ;; rmail-output-to-rmail-file enables auto save when you do that.
536 (setq buffer-auto-save-file-name nil) 540 (setq buffer-auto-save-file-name nil)
537 (if (boundp 'mode-line-modified) 541 (if (boundp 'mode-line-modified)
538 (setq mode-line-modified "--- ") 542 (setq mode-line-modified "--- ")