From: David Edmondson Date: Sun, 10 Jan 2021 14:45:07 +0000 (+0100) Subject: Fix example in the Gnus manual X-Git-Tag: emacs-28.0.90~4312 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6858b74763cd784e4594b329633ac39c599c686d;p=emacs.git 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). --- diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index 797315d5b81..5a79cbc08fc 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi @@ -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