Function: gnus-summary-unmark-all-processable
gnus-summary-unmark-all-processable is an interactive and
byte-compiled function defined in gnus-sum.el.gz.
Signature
(gnus-summary-unmark-all-processable)
Documentation
Remove the process mark from all articles.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-unmark-all-processable ()
"Remove the process mark from all articles."
(interactive nil gnus-summary-mode)
(save-excursion
(while gnus-newsgroup-processable
(gnus-summary-remove-process-mark (car gnus-newsgroup-processable))))
(gnus-summary-position-point))