Function: gnus-pick-unmark-article-or-thread
gnus-pick-unmark-article-or-thread is an interactive and byte-compiled
function defined in gnus-salt.el.gz.
Signature
(gnus-pick-unmark-article-or-thread &optional ARG)
Documentation
If gnus-thread-hide-subtree is t, then unmark the thread on current line.
Otherwise unmark the article on current line. If ARG, unmark thread/article on that line instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-salt.el.gz
(defun gnus-pick-unmark-article-or-thread (&optional arg)
"If `gnus-thread-hide-subtree' is t, then unmark the thread on current line.
Otherwise unmark the article on current line.
If ARG, unmark thread/article on that line instead."
(interactive "P")
(when arg
(gnus-pick-goto-article arg))
(if gnus-thread-hide-subtree
(save-excursion
(gnus-uu-unmark-thread))
(gnus-summary-unmark-as-processable 1)))