Restore the quote in the `silly' example.
authorRichard M. Stallman <rms@gnu.org>
Sat, 12 Jan 2002 22:40:36 +0000 (22:40 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 12 Jan 2002 22:40:36 +0000 (22:40 +0000)
lispref/functions.texi

index 78e4a44..67d68e4 100644 (file)
@@ -811,7 +811,7 @@ anonymous function.  Such a list is valid wherever a function name is.
 
 @smallexample
 @group
-(setq silly (append (lambda (x)) (list (list '+ (* 3 4) 'x))))
+(setq silly (append '(lambda (x)) (list (list '+ (* 3 4) 'x))))
 @result{} (lambda (x) (+ 12 x))
 @end group
 @end smallexample