Function: gnus-uu-unmark-thread

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

Signature

(gnus-uu-unmark-thread)

Documentation

Unmark all articles downwards in this thread.

Key Bindings

Source Code

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