Function: gnus-request-group

gnus-request-group is a byte-compiled function defined in gnus-int.el.gz.

Signature

(gnus-request-group GROUP &optional DONT-CHECK COMMAND-METHOD INFO)

Documentation

Request GROUP. If DONT-CHECK, no information is required.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-request-group (group &optional dont-check command-method info)
  "Request GROUP.  If DONT-CHECK, no information is required."
  (let ((gnus-command-method
	 (or command-method (inline (gnus-find-method-for-group group)))))
    (when (stringp gnus-command-method)
      (setq gnus-command-method
	    (inline (gnus-server-to-method gnus-command-method))))
    (funcall (inline (gnus-get-function gnus-command-method 'request-group))
	     (gnus-group-real-name group) (nth 1 gnus-command-method)
	     dont-check
	     info)))