Function: gnus-group-find-parameter

gnus-group-find-parameter is a byte-compiled function defined in gnus.el.gz.

Signature

(gnus-group-find-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 you call this function inside a loop, consider using the faster gnus-group-fast-parameter instead.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defun gnus-group-find-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 you call this function inside a loop, consider using the faster
`gnus-group-fast-parameter' instead."
  (with-current-buffer (or (gnus-buffer-live-p gnus-group-buffer)
                           (current-buffer))
    (if symbol
	(gnus-group-fast-parameter group symbol allow-list)
      (nconc
       (copy-sequence
	(funcall gnus-group-get-parameter-function group))
       (gnus-parameters-get-parameter group)))))