1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:58:46 +00:00

gnus-sum.el (gnus-update-marks): Revert intersection change, which made marks not propagate, again.

This commit is contained in:
Lars Magne Ingebrigtsen 2011-03-31 13:31:56 +00:00 committed by Katsumi Yamaoka
parent 221ddf68cb
commit d5b686dc30
2 changed files with 8 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2011-03-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-sum.el (gnus-update-marks): Revert intersection change, which
made marks not propagate, again.
2011-03-30 Chong Yidong <cyd@stupidchicken.com>
* proto-stream.el (open-protocol-stream): Bring back `network' type.

View File

@ -6072,14 +6072,10 @@ If SELECT-ARTICLES, only select those articles from GROUP."
;; didn't actually get any headers for.
(existing (gnus-compress-sequence gnus-newsgroup-articles))
(del
(gnus-sorted-range-intersection
existing
(gnus-remove-from-range (gnus-copy-sequence old) list)))
(gnus-remove-from-range (gnus-copy-sequence old) list))
(add
(gnus-sorted-range-intersection
existing
(gnus-remove-from-range
(gnus-copy-sequence list) old))))
(gnus-remove-from-range
(gnus-copy-sequence list) old)))
(when add
(push (list add 'add (list (cdr type))) delta-marks))
(when del