Function: gnus-summary-unmark-as-processable
gnus-summary-unmark-as-processable is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-unmark-as-processable N)
Documentation
Remove the process mark from the next N articles.
If N is negative, unmark backward instead. The difference between N and the actual number of articles unmarked is returned.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-unmark-as-processable (n)
"Remove the process mark from the next N articles.
If N is negative, unmark backward instead. The difference between N and
the actual number of articles unmarked is returned."
(interactive "P" gnus-summary-mode)
(gnus-summary-mark-as-processable n t))