emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 46dafe4: Fix requesting sparse articles in gnus


From: Andrew G Cohen
Subject: [Emacs-diffs] master 46dafe4: Fix requesting sparse articles in gnus
Date: Tue, 25 Apr 2017 01:17:57 -0400 (EDT)

branch: master
commit 46dafe4103d1d24a9ec9b3a7a561829bcd5807aa
Author: Andrew G Cohen <address@hidden>
Commit: Andrew G Cohen <address@hidden>

    Fix requesting sparse articles in gnus
    
    * lisp/gnus/gnus-art.el (gnus-request-article-this-buffer): Delete the
    sparse article number from the list, not its id.
---
 lisp/gnus/gnus-art.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index a4ff840..9b91f9f 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -6993,10 +6993,10 @@ If given a prefix, show the hidden text instead."
                   ((memq article gnus-newsgroup-sparse)
                    ;; This is a sparse gap article.
                    (setq do-update-line article)
-                   (setq article (mail-header-id header))
-                   (setq sparse-header (gnus-read-header article))
                    (setq gnus-newsgroup-sparse
-                         (delq article gnus-newsgroup-sparse)))
+                         (delq article gnus-newsgroup-sparse))
+                   (setq article (mail-header-id header))
+                   (setq sparse-header (gnus-read-header article)))
                   ((vectorp header)
                    ;; It's a real article.
                    (setq article (mail-header-id header)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]