Skip to content

Commit

Permalink
Fix example in the Gnus manual
Browse files Browse the repository at this point in the history
* 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).
  • Loading branch information
dme authored and larsmagne committed Jan 10, 2021
1 parent 9717ba9 commit 6858b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/misc/gnus.texi
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 6858b74

Please sign in to comment.