+2001-05-19 Masahiro MURATA <muse@ba2.so-net.ne.jp>
+
+ * wl-summary.el (wl-summary-auto-select-msg-p): New function.
+ (wl-summary-goto-folder-subr): If `wl-auto-select-first' is
+ non-nil and selected message is important, do not display.
+
2001-05-01 TAKAHASHI Kaoru <kaoru@kaisei.org>
* wl-summary.el (wl-summary-write-current-folder): Set cursor
(lambda (x) (elmo-msgdb-overview-entity-get-number x))
(elmo-msgdb-get-overview wl-summary-buffer-msgdb))))
+(defun wl-summary-auto-select-msg-p (unread-msg)
+ (and unread-msg
+ (not (string=
+ (cadr (assoc unread-msg
+ (elmo-msgdb-get-mark-alist
+ wl-summary-buffer-msgdb)))
+ wl-summary-important-mark))))
+
(defun wl-summary-goto-folder-subr (&optional folder scan-type other-window
sticky interactive scoring)
"Display target folder on summary."
(let ((unreadp (wl-summary-next-message
(wl-summary-message-number)
'down t)))
- (cond ((and wl-auto-select-first unreadp)
+ (cond ((and wl-auto-select-first
+ (wl-summary-auto-select-msg-p unreadp))
+ ;; wl-auto-select-first is non-nil and
+ ;; unreadp is non-nil but not important
(setq retval 'disp-msg))
- ((not unreadp)
+ ((not (wl-summary-auto-select-msg-p unreadp))
+ ;; unreadp is nil or important
(setq retval 'more-next))))
(goto-char (point-max))
(if (elmo-folder-plugged-p folder)