Function: gnus-fetch-group

gnus-fetch-group is an autoloaded, interactive and byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-fetch-group GROUP &optional ARTICLES)

Documentation

Start Gnus if necessary and enter GROUP.

If ARTICLES, display those articles. Returns whether the fetching was successful or not.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
;;;###autoload
(defun gnus-fetch-group (group &optional articles)
  "Start Gnus if necessary and enter GROUP.
If ARTICLES, display those articles.
Returns whether the fetching was successful or not."
  (interactive (list (gnus-group-completing-read nil
						 nil nil
						 (gnus-group-name-at-point))))
  (unless (gnus-alive-p)
    (gnus-no-server))
  (gnus-group-read-group (if articles nil t) nil group articles))