Variable: gnus-score-file-multiple-match-alist
gnus-score-file-multiple-match-alist is a customizable variable
defined in gnus-score.el.gz.
Value
nil
Documentation
Alist mapping regexps to lists of score files.
Each element of this alist should be of the form
("REGEXP" [ "SCORE-FILE-1" ] [ "SCORE-FILE-2" ] ... )
If the name of a group is matched by REGEXP, the corresponding scorefiles
will be used for that group.
If multiple REGEXPs match a group, the score files corresponding to each
match will be used (for only one match to be used, see
gnus-score-file-single-match-alist).
These score files are loaded in addition to any files returned by
gnus-score-find-score-files-function.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defcustom gnus-score-file-multiple-match-alist nil
"Alist mapping regexps to lists of score files.
Each element of this alist should be of the form
(\"REGEXP\" [ \"SCORE-FILE-1\" ] [ \"SCORE-FILE-2\" ] ... )
If the name of a group is matched by REGEXP, the corresponding scorefiles
will be used for that group.
If multiple REGEXPs match a group, the score files corresponding to each
match will be used (for only one match to be used, see
`gnus-score-file-single-match-alist').
These score files are loaded in addition to any files returned by
`gnus-score-find-score-files-function'."
:group 'gnus-score-files
:type '(repeat (cons regexp (repeat file))))