Function: gnus-summary-clear-mark-forward
gnus-summary-clear-mark-forward is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-clear-mark-forward N)
Documentation
Clear marks from N articles forward.
If N is negative, clear backward instead. The difference between N and the number of marks cleared is returned.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-clear-mark-forward (n)
"Clear marks from N articles forward.
If N is negative, clear backward instead.
The difference between N and the number of marks cleared is returned."
(interactive "p" gnus-summary-mode)
(gnus-summary-mark-forward n gnus-unread-mark))