]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix example in the Gnus manual
authorDavid Edmondson <dme@dme.org>
Sun, 10 Jan 2021 14:45:07 +0000 (15:45 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 10 Jan 2021 14:45:07 +0000 (15:45 +0100)
* 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).

doc/misc/gnus.texi

index 797315d5b81493cfa839cdb3d68e7722e86372d9..5a79cbc08fcd92aae0ba614bd848544dfdf44c39 100644 (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