[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r101369: gnus-start.el (gnus-get-unre
From: |
Katsumi Yamaoka |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r101369: gnus-start.el (gnus-get-unread-articles): Count the archive groups as secondary, so that they're activated the same way as before. |
Date: |
Mon, 06 Sep 2010 00:20:42 +0000 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 101369
author: Lars Magne Ingebrigtsen <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Mon 2010-09-06 00:20:42 +0000
message:
gnus-start.el (gnus-get-unread-articles): Count the archive groups as
secondary, so that they're activated the same way as before.
modified:
lisp/gnus/ChangeLog
lisp/gnus/gnus-start.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog 2010-09-06 00:15:13 +0000
+++ b/lisp/gnus/ChangeLog 2010-09-06 00:20:42 +0000
@@ -3,6 +3,8 @@
* gnus-start.el (gnus-activate-group): Take an optional parameter to
say that you don't want to call gnus-request-group with don-check, but
do check the reponse. This is for virtual groups only.
+ (gnus-get-unread-articles): Count the archive groups as secondary, so
+ that they're activated the same way as before.
* nnimap.el (nnimap-request-list): Servers may return \NoSelect
case-insensitively.
=== modified file 'lisp/gnus/gnus-start.el'
--- a/lisp/gnus/gnus-start.el 2010-09-06 00:15:13 +0000
+++ b/lisp/gnus/gnus-start.el 2010-09-06 00:20:42 +0000
@@ -1688,6 +1688,7 @@
(methods-cache nil)
(type-cache nil)
(gnus-agent-article-local-times 0)
+ (archive-method (gnus-server-to-method "archive"))
infos info group active method cmethod
method-type method-group-list)
(gnus-message 6 "Checking new news...")
@@ -1723,7 +1724,9 @@
(unless method-group-list
(setq method-type
(cond
- ((gnus-secondary-method-p method)
+ ((or (gnus-secondary-method-p method)
+ (and (gnus-archive-server-wanted-p)
+ (gnus-methods-equal-p archive-method method)))
'secondary)
((inline (gnus-server-equal gnus-select-method method))
'primary)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r101369: gnus-start.el (gnus-get-unread-articles): Count the archive groups as secondary, so that they're activated the same way as before.,
Katsumi Yamaoka <=