]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the %P (line number) thing in Gnus summary buffers
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 25 Jan 2017 19:57:52 +0000 (20:57 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 25 Jan 2017 19:57:52 +0000 (20:57 +0100)
* lisp/gnus/gnus-salt.el (gnus-pick-line-number): Remove hack.

* lisp/gnus/gnus-sum.el (gnus-summary-read-group-1): Reset the
"pick" mode line number on entry instead of relying in a hack (bug#18311).

lisp/gnus/gnus-salt.el
lisp/gnus/gnus-sum.el

index 5361c2b86fcf4d401a2b26542704997eb645bc1c..7037328b7a4e3e2318f416876e50ac86aa4dfff9 100644 (file)
@@ -131,9 +131,7 @@ It accepts the same format specs that `gnus-summary-line-format' does."
 (defvar gnus-pick-line-number 1)
 (defun gnus-pick-line-number ()
   "Return the current line number."
-  (if (bobp)
-      (setq gnus-pick-line-number 1)
-    (incf gnus-pick-line-number)))
+  (incf gnus-pick-line-number))
 
 (defun gnus-pick-start-reading (&optional catch-up)
   "Start reading the picked articles.
index 624833420d7c69a9156305ae451240fbfc43ddad..e21d6bdb67dafa8536e00629a75546f5039ff1fc 100644 (file)
@@ -3976,6 +3976,8 @@ If SELECT-ARTICLES, only select those articles from GROUP."
      ;; The group was successfully selected.
      (t
       (gnus-set-global-variables)
+      (when (boundp 'gnus-pick-line-number)
+       (setq gnus-pick-line-number 0))
       (when (boundp 'spam-install-hooks)
        (spam-initialize))
       ;; Save the active value in effect when the group was entered.