diff options
author | Glenn Morris <rgm@gnu.org> | 2009-02-13 07:48:13 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-02-13 07:48:13 +0000 |
commit | bc04f2072371259bcf77d1d513ce5be74ea953c2 (patch) | |
tree | cd1e7abd3d3c31eb0d02366cacf0b9e75ec6050d /lisp/mail/rmailsum.el | |
parent | 809f3af083048e9a74d9f07c2581514facc09122 (diff) | |
download | emacs-bc04f2072371259bcf77d1d513ce5be74ea953c2.tar.gz |
Update for rmail-show-message-maybe name change.
Diffstat (limited to 'lisp/mail/rmailsum.el')
-rw-r--r-- | lisp/mail/rmailsum.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index ce7a74a992d..6940f3d4ba6 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -958,12 +958,12 @@ Search, the `unseen' attribute is restored.") (unwind-protect (progn (select-window window) - (rmail-show-message-maybe msg-num t)) + (rmail-show-message msg-num t)) (select-window owin)) (if (buffer-name rmail-buffer) (save-excursion (set-buffer rmail-buffer) - (rmail-show-message-maybe msg-num t)))))) + (rmail-show-message msg-num t)))))) (rmail-summary-update-highlight nil))))) (defun rmail-summary-save-buffer () @@ -1223,7 +1223,7 @@ Returns non-nil if message N was found." (let ((selwin (selected-window))) (unwind-protect (progn (pop-to-buffer buf) - (rmail-show-message-maybe n)) + (rmail-show-message n)) (select-window selwin) ;; The actions above can alter the current buffer. Preserve it. (set-buffer obuf)))) |