diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2015-01-29 09:20:48 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2015-01-29 09:20:48 +0000 |
commit | cfb188718998d2bfbbee17567c9527a20518547f (patch) | |
tree | f26b899adabf49e5965fe1923132879ccf5eb044 /lisp/gnus/nnimap.el | |
parent | 4ba343984f1ea2bc87493339a315e13ba1410d28 (diff) | |
download | emacs-cfb188718998d2bfbbee17567c9527a20518547f.tar.gz |
lisp/gnus/nnimap.el (nnimap-request-group): nnimap group activation problems fixed
Diffstat (limited to 'lisp/gnus/nnimap.el')
-rw-r--r-- | lisp/gnus/nnimap.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index e619c0f13c2..0fe2bb5872c 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el @@ -804,9 +804,10 @@ textual parts.") articles active marks high low) (with-current-buffer nntp-server-buffer (when result - (when (or (not dont-check) - (not (setq active - (nth 2 (assoc group nnimap-current-infos))))) + (when (and info + (or (not dont-check) + (not (setq active + (nth 2 (assoc group nnimap-current-infos)))))) (let ((sequences (nnimap-retrieve-group-data-early server (list info)))) (nnimap-finish-retrieve-group-infos server (list info) sequences |