Function: gnus-uu-mark-series

gnus-uu-mark-series is an autoloaded, interactive and byte-compiled function defined in gnus-uu.el.gz.

Signature

(gnus-uu-mark-series &optional SILENT)

Documentation

Mark the current series with the process mark.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defun gnus-uu-mark-series (&optional silent)
  "Mark the current series with the process mark."
  (interactive nil gnus-article-mode gnus-summary-mode)
  (let* ((articles (gnus-uu-find-articles-matching))
	 (l (length articles)))
    (while articles
      (gnus-summary-set-process-mark (car articles))
      (setq articles (cdr articles)))
    (unless silent
      (gnus-message 6 "Marked %d articles" l))
    (gnus-summary-position-point)
    l))