Function: gnus-inews-group-method
gnus-inews-group-method is a byte-compiled function defined in
gnus-msg.el.gz.
Signature
(gnus-inews-group-method GROUP)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-msg.el.gz
;;; Gcc handling.
(defun gnus-inews-group-method (group)
(cond
;; If the group doesn't exist, we assume
;; it's an archive group...
((and (null (gnus-get-info group))
(eq (car (gnus-server-to-method gnus-message-archive-method))
(car (gnus-server-to-method (gnus-group-method group)))))
gnus-message-archive-method)
;; Use the method.
((gnus-info-method (gnus-get-info group))
(gnus-info-method (gnus-get-info group)))
;; Find the method.
(t (gnus-server-to-method (gnus-group-method group)))))