diff options
| author | Lars Magne Ingebrigtsen | 2010-09-06 23:56:27 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-09-06 23:56:27 +0000 |
| commit | 26f96aa0845611bd418e13cce1a2a719f6078387 (patch) | |
| tree | 5d3936a542749f2e918f4bf9a42e997e4c5bf8cb | |
| parent | 5edc8186ce140d04a5293c8d7886883b8f1c0798 (diff) | |
| download | emacs-26f96aa0845611bd418e13cce1a2a719f6078387.tar.gz emacs-26f96aa0845611bd418e13cce1a2a719f6078387.zip | |
gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan' for the methods that support -retrieve-groups, too.
| -rw-r--r-- | lisp/gnus/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/gnus/gnus-start.el | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 14ab0eb2bbb..7040aa6ec6c 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-09-06 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2010-09-06 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * gnus-start.el (gnus-read-active-for-groups): Do a `gnus-request-scan' | ||
| 4 | for the methods that support -retrieve-groups, too. | ||
| 5 | |||
| 3 | * nnml.el (nnml-save-nov): Remove some debugging-related messages. | 6 | * nnml.el (nnml-save-nov): Remove some debugging-related messages. |
| 4 | 7 | ||
| 5 | 2010-09-06 Katsumi Yamaoka <yamaoka@jpl.org> | 8 | 2010-09-06 Katsumi Yamaoka <yamaoka@jpl.org> |
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el index 3bdcb05dbe5..a349475dbf5 100644 --- a/lisp/gnus/gnus-start.el +++ b/lisp/gnus/gnus-start.el | |||
| @@ -1792,6 +1792,8 @@ If SCAN, request a scan of that group as well." | |||
| 1792 | (with-current-buffer nntp-server-buffer | 1792 | (with-current-buffer nntp-server-buffer |
| 1793 | (cond | 1793 | (cond |
| 1794 | ((gnus-check-backend-function 'retrieve-groups (car method)) | 1794 | ((gnus-check-backend-function 'retrieve-groups (car method)) |
| 1795 | (when (gnus-check-backend-function 'request-scan (car method)) | ||
| 1796 | (gnus-request-scan nil method)) | ||
| 1795 | (gnus-read-active-file-2 | 1797 | (gnus-read-active-file-2 |
| 1796 | (mapcar (lambda (info) | 1798 | (mapcar (lambda (info) |
| 1797 | (gnus-group-real-name (gnus-info-group info))) | 1799 | (gnus-group-real-name (gnus-info-group info))) |