Function: gnus-group-get-parameter
gnus-group-get-parameter is a byte-compiled function defined in
gnus.el.gz.
Signature
(gnus-group-get-parameter GROUP &optional SYMBOL ALLOW-LIST)
Documentation
Return the group parameters for GROUP.
If SYMBOL, return the value of that symbol in the group
parameters. If ALLOW-LIST, also allow list as a result. Most
functions should use gnus-group-find-parameter, which also
examines the topic parameters. GROUP can also be an info structure.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defun gnus-group-get-parameter (group &optional symbol allow-list)
"Return the group parameters for GROUP.
If SYMBOL, return the value of that symbol in the group
parameters. If ALLOW-LIST, also allow list as a result. Most
functions should use `gnus-group-find-parameter', which also
examines the topic parameters. GROUP can also be an info structure."
(let ((params (gnus-info-params (if (listp group) group
(gnus-get-info group)))))
(if symbol
(gnus-group-parameter-value params symbol allow-list)
params)))