Function: gnus-group-topic-parameters
gnus-group-topic-parameters is a byte-compiled function defined in
gnus-topic.el.gz.
Signature
(gnus-group-topic-parameters GROUP)
Documentation
Compute the group parameters for GROUP in topic mode.
Possibly inherit parameters from topics above GROUP.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-group-topic-parameters (group)
"Compute the group parameters for GROUP in topic mode.
Possibly inherit parameters from topics above GROUP."
(let ((params-list (copy-sequence (gnus-group-get-parameter group))))
(save-excursion
(gnus-topic-hierarchical-parameters
;; First we try to go to the group within the group buffer and find the
;; topic for the group that way. This hopefully copes well with groups
;; that are in more than one topic. Failing that (i.e. when the group
;; isn't visible in the group buffer) we find a topic for the group via
;; gnus-group-topic.
(or (and (gnus-group-goto-group group)
(gnus-current-topic))
(gnus-group-topic group))
params-list))))