gnus-sum.el (gnus-summary-read-group-1): Debbugs group entry fixups

This commit is contained in:
Lars Magne Ingebrigtsen
2013-01-21 22:07:34 +00:00
committed by Katsumi Yamaoka
parent 84e5ed96b0
commit bb677ef744
2 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
2013-01-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-sum.el (gnus-summary-read-group-1): Protect against not being
able to find the article, which can happen in debbugs groups,
apparently.
2013-01-16 Glenn Morris <rgm@gnu.org>
* smiley.el (smiley-style): Make the file loadable in batch mode.

View File

@@ -4058,9 +4058,10 @@ If SELECT-ARTICLES, only select those articles from GROUP."
gnus-auto-select-first)
(progn
(let ((art (gnus-summary-article-number)))
(unless (and (not gnus-plugged)
(or (memq art gnus-newsgroup-undownloaded)
(memq art gnus-newsgroup-downloadable)))
(when (and art
gnus-plugged
(not (memq art gnus-newsgroup-undownloaded))
(not (memq art gnus-newsgroup-downloadable)))
(gnus-summary-goto-article art))))
;; Don't select any articles.
(gnus-summary-position-point)