Function: gnus-summary-mark-as-dormant

gnus-summary-mark-as-dormant is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-mark-as-dormant N)

Documentation

Mark N articles forward as dormant.

If N is negative, mark backward instead. 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
;; Suggested by Daniel Quinlan <quinlan@best.com>.
(defun gnus-summary-mark-as-dormant (n)
  "Mark N articles forward as dormant.
If N is negative, mark backward instead.  The difference between N and
the actual number of articles marked is returned."
  (interactive "p" gnus-summary-mode)
  (gnus-summary-mark-forward n gnus-dormant-mark))