Fix example in the Gnus manual

* doc/misc/gnus.texi (Score Variables): In the example showing how to
use a list of functions for gnus-score-find-score-files-find-function,
return a list of strings from the lambda rather than trying to call
the string as a function (bug#45673).
This commit is contained in:
David Edmondson 2021-01-10 15:45:07 +01:00 committed by Lars Ingebrigtsen
parent 9717ba9309
commit 6858b74763

View file

@ -20195,7 +20195,7 @@ Phu.
For example, to do hierarchical scoring but use a non-server-specific
overall score file, you could use the value
@example
(list (lambda (group) ("all.SCORE"))
(list (lambda (group) (list "all.SCORE"))
'gnus-score-find-hierarchical)
@end example