mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-20 20:07:36 +00:00
Update for rmail-show-message-maybe name change.
This commit is contained in:
parent
809f3af083
commit
bc04f20723
2 changed files with 13 additions and 3 deletions
|
|
@ -1,5 +1,15 @@
|
|||
2009-02-13 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* mail/rmail.el (rmail-show-message-1): New name for the old
|
||||
rmail-show-message.
|
||||
* mail/rmail.el, mail/rmailkwd.el, mail/rmailmsc.el, mail/rmailout.el:
|
||||
* mail/rmailsort.el: Update for rmail-show-message name change.
|
||||
|
||||
* mail/rmail.el (rmail-show-message): New name for the old
|
||||
rmail-show-message-maybe.
|
||||
* mail/rmail.el, mail/rmailsum.el: Update for rmail-show-message-maybe
|
||||
name change.
|
||||
|
||||
* mail/rmailsum.el (msgnum): Remove declaration.
|
||||
(rmail-summary-redo): Add missing initialization value.
|
||||
(rmail-summary-overlay, rmail-summary-mode-map): Add doc string.
|
||||
|
|
|
|||
|
|
@ -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))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue