Function: gnus-summary-mark-article-as-replied

gnus-summary-mark-article-as-replied is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-mark-article-as-replied ARTICLE)

Documentation

Mark ARTICLE as replied to and update the summary line.

ARTICLE can also be a list of articles.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-mark-article-as-replied (article)
  "Mark ARTICLE as replied to and update the summary line.
ARTICLE can also be a list of articles."
  (interactive (list (gnus-summary-article-number))
	       gnus-summary-mode)
  (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 ((inhibit-read-only t))
	(when (gnus-summary-goto-subject article nil t)
	  (gnus-summary-update-secondary-mark article))))))