Function: gnus-agent-unmark-article

gnus-agent-unmark-article is an interactive and byte-compiled function defined in gnus-agent.el.gz.

Signature

(gnus-agent-unmark-article N)

Documentation

Remove the downloadable 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-agent.el.gz
(defun gnus-agent-unmark-article (n)
  "Remove the downloadable 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-agent-mark-article n t))