diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2010-09-05 00:34:16 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-05 00:34:16 +0000 |
commit | 8c3e17f87bb02b8a2b05f66948c28b08a89e6d87 (patch) | |
tree | 4c4abcd967c2ffa8a91b8e1df0fbc68fe45a5bea /lisp/gnus/gnus-int.el | |
parent | 6aeafb34372289081799c952bad2b80f19736be3 (diff) | |
download | emacs-8c3e17f87bb02b8a2b05f66948c28b08a89e6d87.tar.gz |
Rewrite the Gnus group activation method to be more efficient; nnmh.el (nnmh-request-list-1): Fix up the recursion behavior; Add more changes related to the new methodology for requesting backend data.
Diffstat (limited to 'lisp/gnus/gnus-int.el')
-rw-r--r-- | lisp/gnus/gnus-int.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-int.el b/lisp/gnus/gnus-int.el index fb9b482b148..1054506acef 100644 --- a/lisp/gnus/gnus-int.el +++ b/lisp/gnus/gnus-int.el @@ -544,7 +544,8 @@ If GROUP is nil, all groups on GNUS-COMMAND-METHOD are scanned." (if group (gnus-find-method-for-group group) gnus-command-method)) (gnus-inhibit-demon t) (mail-source-plugged gnus-plugged)) - (when (or gnus-plugged (not (gnus-agent-method-p gnus-command-method))) + (when (or gnus-plugged + (not (gnus-agent-method-p gnus-command-method))) (setq gnus-internal-registry-spool-current-method gnus-command-method) (funcall (gnus-get-function gnus-command-method 'request-scan) (and group (gnus-group-real-name group)) |