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