diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-04-04 14:03:08 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2011-04-04 14:03:08 +0000 |
commit | d451951a53a19d2a484cdf94b055c461b64be2c9 (patch) | |
tree | 3902485bc4ec27ccf68316e590c16b7c01df5369 /lisp/gnus/gnus-start.el | |
parent | 2fbc1934ae9a9610ef98578d59d478cb642363f9 (diff) | |
download | emacs-d451951a53a19d2a484cdf94b055c461b64be2c9.tar.gz |
gnus-sum.el (gnus-update-marks): Reinstate the code to not alter marks on non-selected articles.
gnus-start.el (gnus-get-unread-articles): Don't try to contact denied servers.
Diffstat (limited to 'lisp/gnus/gnus-start.el')
-rw-r--r-- | lisp/gnus/gnus-start.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el index afded87fe37..fa582c58aee 100644 --- a/lisp/gnus/gnus-start.el +++ b/lisp/gnus/gnus-start.el @@ -1723,7 +1723,9 @@ If SCAN, request a scan of that group as well." ;; Do the rest of the retrieval. (dolist (elem type-cache) (destructuring-bind (method method-type infos early-data) elem - (when (and method infos) + (when (and method infos + (not (eq (gnus-server-status method) + 'denied))) (let ((updatep (gnus-check-backend-function 'request-update-info (car method)))) ;; See if any of the groups from this method require updating. |