(gnus-summary-mark-article-as-replied): Added
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 21 Jan 2003 13:03:20 +0000 (13:03 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 21 Jan 2003 13:03:20 +0000 (13:03 +0000)
debugging statements.

lisp/ChangeLog
lisp/gnus-sum.el

index 7f7e023..171d2dd 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus-sum.el (gnus-summary-mark-article-as-replied): Added
+       debugging statements.
+
 2003-01-21  Andreas Fuchs  <asf@void.at>
 
        * mml-sec.el (mml-sign-alist): Added pgpauto.
index fd2f4fe..f44a860 100644 (file)
@@ -9432,6 +9432,8 @@ ARTICLE can also be a list of articles."
   (interactive (list (gnus-summary-article-number)))
   (let ((articles (if (listp article) article (list article))))
     (dolist (article articles)
+      (unless (numberp article)
+       (error "%s is not a number" article))
       (push article gnus-newsgroup-replied)
       (let ((buffer-read-only nil))
        (when (gnus-summary-goto-subject article nil t)