Function: gnus-request-create-group
gnus-request-create-group is a byte-compiled function defined in
gnus-int.el.gz.
Signature
(gnus-request-create-group GROUP &optional COMMAND-METHOD ARGS)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-request-create-group (group &optional command-method args)
(let* ((gnus-command-method
(or (if (stringp command-method)
(gnus-server-to-method command-method)
command-method)
(gnus-find-method-for-group group))))
(funcall (gnus-get-function gnus-command-method 'request-create-group)
(gnus-group-real-name group) (nth 1 gnus-command-method) args)))