From ccd77ce8a07b554cba62207328a9d3932fddc6ea Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Fri, 24 Sep 2010 19:12:08 +0200 Subject: [PATCH] When braiding heads, don't use the same article number for all the cached articles. --- lisp/ChangeLog | 3 +++ lisp/gnus-cache.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 97337601f..0c3b11846 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-09-24 Lars Magne Ingebrigtsen + * gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't + use the same article number for all the cached articles. + * nnimap.el (nnimap-command): Register the last command time so that we can use it for idling NOOPs. (nnimap-open-connection): Start the keeplive timer. diff --git a/lisp/gnus-cache.el b/lisp/gnus-cache.el index 4b2d67057..550614f93 100644 --- a/lisp/gnus-cache.el +++ b/lisp/gnus-cache.el @@ -603,7 +603,7 @@ system for example was used.") (insert-file-contents (gnus-cache-file-name group entry))) (goto-char (point-min)) (insert "220 ") - (princ (car cached) (current-buffer)) + (princ (pop cached) (current-buffer)) (insert " Article retrieved.\n") (search-forward "\n\n" nil 'move) (delete-region (point) (point-max)) -- 2.34.1