Variable: gnus-score-file-single-match-alist
gnus-score-file-single-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.
The first match found is used, subsequent matching entries are ignored (to
use multiple matches, see gnus-score-file-multiple-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-single-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.
The first match found is used, subsequent matching entries are ignored (to
use multiple matches, see `gnus-score-file-multiple-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))))