[gnus git] branch master updated: m0-5-26-gc94749b =1= (gnus-summary-insert-old-articles): Don't include unexistent messages.
Lars Magne Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via c94749b45b351625387eeb4b4bb65d3842b8d683 (commit)
from c79df675b50e367e228dde5f417fca33e60814d8 (commit)
- Log -----------------------------------------------------------------
commit c94749b45b351625387eeb4b4bb65d3842b8d683
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Sun Jun 10 22:50:36 2012 +0200
(gnus-summary-insert-old-articles): Don't include unexistent messages.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9b25914..48991ed 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -2,6 +2,7 @@
* gnus-sum.el (gnus-summary-limit-to-author): Use the current From
address as the default.
+ (gnus-summary-insert-old-articles): Don't include unexistent messages.
* nnfolder.el (nnfolder-save-buffer): Delete old versions silently. It
makes no sense to query the user about internal files.
diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el
index c75585d..afc0231 100644
--- a/lisp/gnus-sum.el
+++ b/lisp/gnus-sum.el
@@ -12856,7 +12856,9 @@ If ALL is a number, fetch this number of articles."
;; Some nntp servers lie about their active range. When
;; this happens, the active range can be in the millions.
;; Use a compressed range to avoid creating a huge list.
- (gnus-range-difference (list gnus-newsgroup-active) old))
+ (gnus-range-difference
+ (gnus-range-difference (list gnus-newsgroup-active) old)
+ gnus-newsgroup-unexist))
(setq len (gnus-range-length older))
(cond
((null older) nil)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 1 +
lisp/gnus-sum.el | 4 +++-
2 files changed, 4 insertions(+), 1 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project