Function: gnus-summary-mark-as-read-backward
gnus-summary-mark-as-read-backward is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-mark-as-read-backward N)
Documentation
Mark the N articles as read backwards.
The difference between N and the actual number of articles marked is returned.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-mark-as-read-backward (n)
"Mark the N articles as read backwards.
The difference between N and the actual number of articles marked is
returned."
(interactive "p" gnus-summary-mode)
(gnus-summary-mark-forward
(- n) gnus-del-mark gnus-inhibit-user-auto-expire))