Function: gnus-agent-toggle-mark
gnus-agent-toggle-mark is an interactive and byte-compiled function
defined in gnus-agent.el.gz.
Signature
(gnus-agent-toggle-mark N)
Documentation
Toggle the downloadable mark from the next N articles.
If N is negative, toggle backward instead. The difference between N and the actual number of articles toggled is returned.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-agent.el.gz
(defun gnus-agent-toggle-mark (n)
"Toggle the downloadable mark from the next N articles.
If N is negative, toggle backward instead. The difference between N and
the actual number of articles toggled is returned."
(interactive "p")
(gnus-agent-mark-article n 'toggle))