diff options
| author | Lars Magne Ingebrigtsen | 2010-09-18 13:59:25 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-09-18 13:59:25 +0000 |
| commit | bf5ba10b08798317749077578a87b687d8d4b7e7 (patch) | |
| tree | c6a4c8177d38ac0db9f746dbeb1fe23a900acb27 | |
| parent | bea4f10c834af9eee873e16913897bbf8065b52e (diff) | |
| download | emacs-bf5ba10b08798317749077578a87b687d8d4b7e7.tar.gz emacs-bf5ba10b08798317749077578a87b687d8d4b7e7.zip | |
gnus-start.el (gnus-get-unread-articles): Allow the backends to update the group info. This makes the nndraft groups, for instance, go back to their old behaviour.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-start.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index ee623eba37f..d8c03443d82 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2010-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2010-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * gnus-start.el (gnus-get-unread-articles): Allow the backends to | ||
| 4 | update the group info. This makes the nndraft groups, for instance, go | ||
| 5 | back to their old behaviour. | ||
| 6 | |||
| 3 | * gnus-sum.el (gnus-select-newsgroup): Indent. | 7 | * gnus-sum.el (gnus-select-newsgroup): Indent. |
| 4 | 8 | ||
| 5 | * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log | 9 | * nnimap.el (nnimap-possibly-change-group): Return nil if we can't log |
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el index e25d31ec87e..84835428be2 100644 --- a/lisp/gnus/gnus-start.el +++ b/lisp/gnus/gnus-start.el | |||
| @@ -1774,7 +1774,8 @@ If SCAN, request a scan of that group as well." | |||
| 1774 | (gnus-read-active-for-groups method infos early-data) | 1774 | (gnus-read-active-for-groups method infos early-data) |
| 1775 | (dolist (info infos) | 1775 | (dolist (info infos) |
| 1776 | (inline (gnus-get-unread-articles-in-group | 1776 | (inline (gnus-get-unread-articles-in-group |
| 1777 | info (gnus-active (gnus-info-group info)))))))) | 1777 | info (gnus-active (gnus-info-group info)) |
| 1778 | t)))))) | ||
| 1778 | (gnus-message 6 "Checking new news...done"))) | 1779 | (gnus-message 6 "Checking new news...done"))) |
| 1779 | 1780 | ||
| 1780 | (defun gnus-method-rank (type method) | 1781 | (defun gnus-method-rank (type method) |