[gnus git] branch master updated: =1= * gnus-start.el (gnus-get-unread-articles): Fix the call to methods that have no groups.
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 26be1f2820f24c95bc97369e86c6f0bd9b389cea (commit)
from 647c17891849c561534af42b619e9679259ba2b3 (commit)
- Log -----------------------------------------------------------------
commit 26be1f2820f24c95bc97369e86c6f0bd9b389cea
Author: Adam Sjøgren <[email protected]>
Date: Thu Feb 3 11:49:30 2011 -0800
* gnus-start.el (gnus-get-unread-articles): Fix the call to methods that have no groups.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b70c9ac..f2eccd6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-02-03 Adam Sjøgren <[email protected]>
+
+ * gnus-start.el (gnus-get-unread-articles): Fix the call to methods
+ that have no groups.
+
2011-02-03 Julien Danjou <[email protected]>
* gnus-draft.el: Remove progn around gnus-draft-setup.
diff --git a/lisp/gnus-start.el b/lisp/gnus-start.el
index 933e7d0..b8a6be8 100644
--- a/lisp/gnus-start.el
+++ b/lisp/gnus-start.el
@@ -1711,7 +1711,8 @@ If SCAN, request a scan of that group as well."
gnus-secondary-select-methods))
(when (and (not (assoc method type-cache))
(gnus-check-backend-function 'request-list (car method)))
- (gnus-read-active-file-1 method nil)))
+ (with-current-buffer nntp-server-buffer
+ (gnus-read-active-file-1 method nil))))
;; Do the rest of the retrieval.
(dolist (elem type-cache)
-----------------------------------------------------------------------
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 | 5 +++++
lisp/gnus-start.el | 3 ++-
2 files changed, 7 insertions(+), 1 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