aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-01-12 22:40:36 +0000
committerRichard M. Stallman <[email protected]>2002-01-12 22:40:36 +0000
commitba3dafc8c940c5c26edf0dd5e22c0c59a3b89dad (patch)
treebc0fc2cbd74896f0491edc820f8f98034df97e72 /lispref
parentb9d67a772da09c8055cba87a5e0f5a44a55b4f6f (diff)
Restore the quote in the `silly' example.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/functions.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/functions.texi b/lispref/functions.texi
index 78e4a44327..67d68e40a9 100644
--- a/lispref/functions.texi
+++ b/lispref/functions.texi
@@ -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