Function: gnus-hierarchial-home-adapt-file

gnus-hierarchial-home-adapt-file is a byte-compiled function defined in gnus-score.el.gz.

Signature

(gnus-hierarchial-home-adapt-file GROUP)

Documentation

Return the adapt 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-adapt-file (group)
  "Return the adapt file of the top-level hierarchy of GROUP."
  (if (string-match "^[^.]+\\." group)
      (concat (match-string 0 group) gnus-adaptive-file-suffix)
    ;; Group name without any dots.
    (concat group (if (gnus-use-long-file-name 'not-score) "." "/")
	    gnus-adaptive-file-suffix)))