[gnus git] branch master updated: =2= Read the active files thoroughly for all backends that have no known groups. ; (gnus-group-jump-to-group): Allow jumping to groups that Gnus doesn't know exists again.
Lars Magne Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 69c9bea830571514039117707ae832260454e709 (commit)
via ec858845aadee42b4a4a778069d3c72a43363b61 (commit)
from 5b81b4b7b447c64f3c09bad8541b3dfa71c392d1 (commit)
- Log -----------------------------------------------------------------
commit 69c9bea830571514039117707ae832260454e709
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Sun Jan 30 18:12:33 2011 -0800
Read the active files thoroughly for all backends that have no known
groups.
This should allow new nnml methods to retrieve mail, for instance.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2ec51ef..f9dbec8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
2011-01-31 Lars Ingebrigtsen <[email protected]>
+ * gnus-start.el (gnus-read-active-for-groups): Read the active files
+ thoroughly for all backends that have no known groups. This should
+ allow new nnml methods to retrieve mail.
+
* gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
that Gnus doesn't know exists again.
diff --git a/lisp/gnus-start.el b/lisp/gnus-start.el
index e2dff45..3879df3 100644
--- a/lisp/gnus-start.el
+++ b/lisp/gnus-start.el
@@ -1743,11 +1743,13 @@ If SCAN, request a scan of that group as well."
(cond
((and
(gnus-check-backend-function 'finish-retrieve-group-infos (car method))
+ infos
(or (not (gnus-agent-method-p method))
(gnus-online method)))
(gnus-finish-retrieve-group-infos method infos early-data)
(gnus-agent-save-active method))
- ((gnus-check-backend-function 'retrieve-groups (car method))
+ ((and (gnus-check-backend-function 'retrieve-groups (car method))
+ infos)
(when (gnus-check-backend-function 'request-scan (car method))
(gnus-request-scan nil method))
(let (groups)
commit ec858845aadee42b4a4a778069d3c72a43363b61
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Sun Jan 30 18:07:34 2011 -0800
(gnus-group-jump-to-group): Allow jumping to groups that Gnus doesn't know exists again.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a9e26e0..2ec51ef 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2011-01-31 Lars Ingebrigtsen <[email protected]>
+ * gnus-group.el (gnus-group-jump-to-group): Allow jumping to groups
+ that Gnus doesn't know exists again.
+
* gnus-art.el (gnus-article-date-lapsed-new-header): Removed.
(gnus-treat-date-ut): Ditto.
(gnus-article-update-date-header): Renamed.
diff --git a/lisp/gnus-group.el b/lisp/gnus-group.el
index 66bf70b..30cd127 100644
--- a/lisp/gnus-group.el
+++ b/lisp/gnus-group.el
@@ -2467,7 +2467,7 @@ If PROMPT (the prefix) is a number, use the prompt specified in
`gnus-group-jump-to-group-prompt'."
(interactive
(list (gnus-group-completing-read
- nil nil t
+ nil nil nil
(if current-prefix-arg
(cdr (assq current-prefix-arg gnus-group-jump-to-group-prompt))
(or (and (stringp gnus-group-jump-to-group-prompt)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 7 +++++++
lisp/gnus-group.el | 2 +-
lisp/gnus-start.el | 4 +++-
3 files changed, 11 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project