Variable: gnus-score-exact-adapt-limit
gnus-score-exact-adapt-limit is a customizable variable defined in
gnus-score.el.gz.
Value
10
Documentation
Number that says how long a match has to be before using substring matching.
When doing adaptive scoring, one normally uses fuzzy or substring matching. However, if the header one matches is short, the possibility for false positives is great, so if the length of the match is less than this variable, exact matching will be used.
If this variable is nil, exact matching will always be used.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-score.el.gz
(defcustom gnus-score-exact-adapt-limit 10
"Number that says how long a match has to be before using substring matching.
When doing adaptive scoring, one normally uses fuzzy or substring
matching. However, if the header one matches is short, the possibility
for false positives is great, so if the length of the match is less
than this variable, exact matching will be used.
If this variable is nil, exact matching will always be used."
:group 'gnus-score-adapt
:type '(choice (const nil) integer))