1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-02 08:22:22 +00:00

(rmail-summary-get-new-mail): Don't call rmail-summary-goto-msg if msg is 0.

This commit is contained in:
Richard M. Stallman 1995-11-30 00:30:38 +00:00
parent f76e0cd017
commit 8d908f848c

View File

@ -1051,7 +1051,8 @@ advance to the previous message."
;; Get the proper new message number.
(setq msg rmail-current-message))
;; Make sure that message is displayed.
(rmail-summary-goto-msg msg)))
(or (zerop msg)
(rmail-summary-goto-msg msg))))
(defun rmail-summary-input (filename)
"Run Rmail on file FILENAME."