Function: gnus-group-select-group

gnus-group-select-group is an interactive and byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-select-group &optional ALL)

Documentation

Select this newsgroup.

No article is selected automatically. If the group is opened, just switch the summary buffer. If ALL is non-nil, already read articles become readable. If ALL is a positive number, fetch this number of the latest articles in the group. If ALL is a negative number, fetch this number of the earliest articles in the group.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-select-group (&optional all)
  "Select this newsgroup.
No article is selected automatically.
If the group is opened, just switch the summary buffer.
If ALL is non-nil, already read articles become readable.
If ALL is a positive number, fetch this number of the latest
articles in the group.
If ALL is a negative number, fetch this number of the earliest
articles in the group."
  (interactive "P" gnus-group-mode)
  (when (and (eobp) (not (gnus-group-group-name)))
    (forward-line -1))
  (gnus-group-read-group all t))