From 56588d15b7f6ee6dfd4392d3d3847d036e0351f2 Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Sun, 31 Oct 2010 16:53:59 +0100 Subject: [PATCH] Reverse the order of the articles to reflect the order they're in in the digest. --- lisp/ChangeLog | 3 +++ lisp/nndoc.el | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c56ee712b..c00093c1f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-10-31 Lars Magne Ingebrigtsen + * nndoc.el (nndoc-dissect-buffer): Reverse the order of the articles to + reflect the order they're in in the digest. + * gnus.el (gnus-group-startup-message): Move point to the start of the buffer. diff --git a/lisp/nndoc.el b/lisp/nndoc.el index 9f147e32b..0dee06d29 100644 --- a/lisp/nndoc.el +++ b/lisp/nndoc.el @@ -918,7 +918,8 @@ from the document.") (setq body-end (point)) (push (list (incf i) head-begin head-end body-begin body-end (count-lines body-begin body-end)) - nndoc-dissection-alist))))))) + nndoc-dissection-alist))))) + (setq nndoc-dissection-alist (nreverse nndoc-dissection-alist)))) (defun nndoc-article-begin () (if nndoc-article-begin-function -- 2.25.1