From 6858b74763cd784e4594b329633ac39c599c686d Mon Sep 17 00:00:00 2001 From: David Edmondson <dme@dme.org> Date: Sun, 10 Jan 2021 15:45:07 +0100 Subject: [PATCH] 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). --- doc/misc/gnus.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5