Function: gnus-hierarchial-home-score-file
gnus-hierarchial-home-score-file is a byte-compiled function defined
in gnus-score.el.gz.
Signature
(gnus-hierarchial-home-score-file GROUP)
Documentation
Return the score file of the top-level hierarchy of GROUP.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defun gnus-hierarchial-home-score-file (group)
"Return the score file of the top-level hierarchy of GROUP."
(if (string-match "^[^.]+\\." group)
(concat (match-string 0 group) gnus-score-file-suffix)
;; Group name without any dots.
(concat group (if (gnus-use-long-file-name 'not-score) "." "/")
gnus-score-file-suffix)))