Function: gnus-uu-mark-thread

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

Signature

(gnus-uu-mark-thread)

Documentation

Mark all articles downwards in this thread.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defun gnus-uu-mark-thread ()
  "Mark all articles downwards in this thread."
  (interactive nil gnus-article-mode gnus-summary-mode)
  (gnus-save-hidden-threads
    (let ((level (gnus-summary-thread-level)))
      (while (and (gnus-summary-set-process-mark (gnus-summary-article-number))
		  (zerop (forward-line 1))
		  (not (eobp))
		  (> (gnus-summary-thread-level) level)))))
  (gnus-summary-position-point))