emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 472d301: Display "No more ... articles" on `n' in G


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 472d301: Display "No more ... articles" on `n' in Gnus
Date: Wed, 11 Apr 2018 18:17:29 -0400 (EDT)

branch: master
commit 472d301fa4bdfbbac27e0fa43560caf3850f1f5c
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Display "No more ... articles" on `n' in Gnus
    
    * lisp/gnus/gnus-sum.el (gnus-summary-next-article): Display the
    "No more"... messages if gnus-auto-select-next is nil and the user
    has default messaging levels (bug#25582).
---
 lisp/gnus/gnus-sum.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 4d95a64..64b8904 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -7802,7 +7802,7 @@ If BACKWARD, the previous article is selected instead of 
the next."
       (cond
        ((or (not gnus-auto-select-next)
            (not cmd))
-       (gnus-message 7 "No more%s articles" (if unread " unread" "")))
+       (gnus-message 6 "No more%s articles" (if unread " unread" "")))
        ((or (eq gnus-auto-select-next 'quietly)
            (and (eq gnus-auto-select-next 'slightly-quietly)
                 push)
@@ -7811,7 +7811,7 @@ If BACKWARD, the previous article is selected instead of 
the next."
        ;; Select quietly.
        (if (gnus-ephemeral-group-p gnus-newsgroup-name)
            (gnus-summary-exit)
-         (gnus-message 7 "No more%s articles (%s)..."
+         (gnus-message 6 "No more%s articles (%s)..."
                        (if unread " unread" "")
                        (if group (concat "selecting " group)
                          "exiting"))



reply via email to

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