Function: gnus-summary-put-mark-as-expirable-next
gnus-summary-put-mark-as-expirable-next is an interactive function
defined in gnus-sum.el.gz.
Signature
(gnus-summary-put-mark-as-expirable-next N)
Documentation
Mark the current article as expirablenext.
If N, the prefix, then repeat N times. If N is negative, move in reverse order. 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
;; Closure converted to defun by helpful.
(defun gnus-summary-put-mark-as-expirable-next
(n)
"Mark the current article as expirablenext.\nIf N, the prefix, then repeat N times.\nIf N is negative, move in reverse order.\nThe difference between N and the actual number of articles marked is\nreturned."
(interactive "p" gnus-summary-mode)
(gnus-summary-generic-mark n gnus-expirable-mark 'next nil))