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:
parent
f76e0cd017
commit
8d908f848c
@ -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."
|
||||
|
Loading…
Reference in New Issue
Block a user