diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-12-24 03:43:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-12-24 03:43:13 +0000 |
commit | 913126a6bce839632ff1a92fd2f09afaa1c4fcea (patch) | |
tree | 9c1eceecf0d2e58e2b8457e29c29bbd2096b1a45 /lisp/mail/rmailout.el | |
parent | 876cd68935ea894af5045a3cb3d57b2e4f15c765 (diff) | |
download | emacs-913126a6bce839632ff1a92fd2f09afaa1c4fcea.tar.gz |
(rmail-output-to-rmail-file): When copying to a buffer,
maybe enable auto save in that buffer.
Diffstat (limited to 'lisp/mail/rmailout.el')
-rw-r--r-- | lisp/mail/rmailout.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/mail/rmailout.el b/lisp/mail/rmailout.el index 8e4db51b5ea..90aedd8f62a 100644 --- a/lisp/mail/rmailout.el +++ b/lisp/mail/rmailout.el @@ -122,6 +122,11 @@ starting with the current one. Deleted messages are skipped and don't count." ;; If MSG is non-nil, buffer is in RMAIL mode. (if msg (progn + ;; Turn on auto save mode, if it's off in this + ;; buffer but enabled by default. + (and (not buffer-auto-save-file-name) + auto-save-default + (auto-save-mode t)) (rmail-maybe-set-message-counters) (widen) (narrow-to-region (point-max) (point-max)) |