Function: gnus-pick-article
gnus-pick-article is an interactive and byte-compiled function defined
in gnus-salt.el.gz.
Signature
(gnus-pick-article &optional ARG)
Documentation
Pick the article on the current line.
If ARG, pick the article on that line instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-salt.el.gz
(defun gnus-pick-article (&optional arg)
"Pick the article on the current line.
If ARG, pick the article on that line instead."
(interactive "P")
(when arg
(gnus-pick-goto-article arg))
(gnus-summary-mark-as-processable 1))