emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 6858b74: Fix example in the Gnus manual


From: Lars Ingebrigtsen
Subject: master 6858b74: Fix example in the Gnus manual
Date: Sun, 10 Jan 2021 09:45:22 -0500 (EST)

branch: master
commit 6858b74763cd784e4594b329633ac39c599c686d
Author: David Edmondson <dme@dme.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    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 797315d..5a79cbc 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
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]