mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
Fix bug in nnselect fetching new articles in a thread
* lisp/gnus/nnselect.el (nnselect-request-thread): Ignore the Retrieval Status Value in comparing whether articles are the same.
This commit is contained in:
parent
da0d598190
commit
90040f0e9f
1 changed files with 9 additions and 2 deletions
|
|
@ -652,8 +652,15 @@ If this variable is nil, or if the provided function returns nil,
|
|||
(lambda (article)
|
||||
(if
|
||||
(setq seq
|
||||
(cl-position article
|
||||
gnus-newsgroup-selection :test 'equal))
|
||||
(cl-position
|
||||
article
|
||||
gnus-newsgroup-selection
|
||||
:test
|
||||
(lambda (x y)
|
||||
(and (equal (nnselect-artitem-group x)
|
||||
(nnselect-artitem-group y))
|
||||
(eql (nnselect-artitem-number x)
|
||||
(nnselect-artitem-number y))))))
|
||||
(push (1+ seq) old-arts)
|
||||
(setq gnus-newsgroup-selection
|
||||
(vconcat gnus-newsgroup-selection (vector article)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue