Function: gnus-summary-remove-process-mark

gnus-summary-remove-process-mark is a byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-remove-process-mark &rest ARTICLES)

Documentation

Remove the process mark from ARTICLES and update the summary line.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-remove-process-mark (&rest articles)
  "Remove the process mark from ARTICLES and update the summary line."
  (dolist (article articles)
    (setq gnus-newsgroup-processable (delq article gnus-newsgroup-processable))
    (when (gnus-summary-goto-subject article)
      (gnus-summary-show-thread)
      (gnus-summary-goto-subject article)
      (gnus-summary-update-secondary-mark article)))
  t)