nnimap.el (nnimap-update-info): Simplify split history test.
This commit is contained in:
parent
226590f8d1
commit
b52daf3d93
2 changed files with 6 additions and 7 deletions
|
@ -7,6 +7,7 @@
|
|||
characters.
|
||||
(nnimap-process-quirk): Renamed function to avoid collision.
|
||||
(nnimap-update-info): Fix macrology bug-out.
|
||||
(nnimap-update-info): Simplify split history test.
|
||||
|
||||
2011-02-06 Lars Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
|
|
|
@ -1342,13 +1342,11 @@ textual parts.")
|
|||
;; Tell Gnus whether there are any \Recent messages in any of
|
||||
;; the groups.
|
||||
(let ((recent (cdr (assoc '%Recent flags))))
|
||||
(when (and active recent)
|
||||
(while recent
|
||||
(when (> (car recent) (cdr active))
|
||||
(push (list (cons (gnus-group-real-name group) 0))
|
||||
nnmail-split-history)
|
||||
(setq recent nil))
|
||||
(pop recent))))
|
||||
(when (and active
|
||||
recent
|
||||
(> (car (last recent)) (cdr active)))
|
||||
(push (list (cons (gnus-group-real-name group) 0))
|
||||
nnmail-split-history)))
|
||||
;; Note the active level for the next run-through.
|
||||
(gnus-group-set-parameter info 'active (gnus-active group))
|
||||
(gnus-group-set-parameter info 'uidvalidity uidvalidity)
|
||||
|
|
Loading…
Add table
Reference in a new issue