diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-04-01 05:01:32 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-04-01 05:01:32 +0000 |
commit | 3043f7ec501e2d9edb626fd1a87aa3158f0740cd (patch) | |
tree | 6514760966addcabd2d7f468d699af41e9950219 /lisp/mail/unrmail.el | |
parent | 3967fff22b4e52f34b289c1166590a3d69235a1d (diff) | |
download | emacs-3043f7ec501e2d9edb626fd1a87aa3158f0740cd.tar.gz |
(unrmail): Don't make or switch to a summary buffer.
Diffstat (limited to 'lisp/mail/unrmail.el')
-rw-r--r-- | lisp/mail/unrmail.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el index d203f54c267..46c4b3de259 100644 --- a/lisp/mail/unrmail.el +++ b/lisp/mail/unrmail.el @@ -48,6 +48,8 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'." "Convert Rmail file FILE to system inbox format file TO-FILE." (interactive "fUnrmail (rmail file): \nFUnrmail into (new mailbox file): ") (let ((message-count 0) + ;; Prevent rmail from making, or switching to, a summary buffer. + (rmail-display-summary nil) (rmail-delete-after-output nil)) (rmail file) (message "Writing messages to %s..." to-file) |