# HG changeset patch # User Katsumi Yamaoka # Date 1284435610 0 # Node ID 16a352829b29be7e74759be85d63d195b3edb1c0 # Parent 5c41eafe6021c7ff464654a04946759d3b3f82f1 gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group for back end that doesn't support request-scan. diff -r 5c41eafe6021 -r 16a352829b29 lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Tue Sep 14 02:08:02 2010 +0200 +++ b/lisp/gnus/ChangeLog Tue Sep 14 03:40:10 2010 +0000 @@ -1,3 +1,8 @@ +2010-09-14 Katsumi Yamaoka + + * gnus-start.el (gnus-read-active-for-groups): Run gnus-activate-group + for back end that doesn't support request-scan. + 2010-09-10 Lars Magne Ingebrigtsen * gnus-start.el (gnus-read-active-file-1): If gnus-agent isn't set, diff -r 5c41eafe6021 -r 16a352829b29 lisp/gnus/gnus-start.el --- a/lisp/gnus/gnus-start.el Tue Sep 14 02:08:02 2010 +0200 +++ b/lisp/gnus/gnus-start.el Tue Sep 14 03:40:10 2010 +0000 @@ -1808,11 +1808,11 @@ (dolist (info infos (nreverse groups)) (push (gnus-group-real-name (gnus-info-group info)) groups)) method))) - ((gnus-check-backend-function 'request-list (car method)) + ((gnus-check-backend-function 'request-scan (car method)) (gnus-read-active-file-1 method nil infos)) (t (dolist (info infos) - (gnus-activate-group (gnus-info-group info) nil nil method t)))))) + (gnus-activate-group (gnus-info-group info) nil nil method)))))) ;; Create a hash table out of the newsrc alist. The `car's of the ;; alist elements are used as keys.