emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 29fc462 1/2: Clarify warning about unknown articles


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 29fc462 1/2: Clarify warning about unknown articles in Gnus
Date: Tue, 9 Jul 2019 12:45:27 -0400 (EDT)

branch: master
commit 29fc4622631b8269b9a0f16dc2f9f2c16a138a4f
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Clarify warning about unknown articles in Gnus
    
    * lisp/gnus/gnus-sum.el (gnus-summary-mark-article-as-unread)
    (gnus-mark-article-as-unread): Clarify warning (bug#34990).
---
 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 7f6b936..019b47d 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -11153,7 +11153,7 @@ If NO-EXPIRE, auto-expiry will be inhibited."
        t
       (if (<= article 0)
          (progn
-           (gnus-error 1 "Can't mark negative article numbers")
+           (gnus-error 1 "Gnus doesn't know the article number; can't mark")
            nil)
        (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked))
        (setq gnus-newsgroup-spam-marked
@@ -11326,7 +11326,7 @@ If NO-EXPIRE, auto-expiry will be inhibited."
   (let ((mark (or mark gnus-ticked-mark)))
     (if (<= article 0)
        (progn
-         (gnus-error 1 "Can't mark negative article numbers")
+         (gnus-error 1 "Gnus doesn't know the article number; can't mark")
          nil)
       (setq gnus-newsgroup-marked (delq article gnus-newsgroup-marked)
            gnus-newsgroup-spam-marked (delq article gnus-newsgroup-spam-marked)



reply via email to

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