aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-01-12 22:40:36 +0000
committerRichard M. Stallman2002-01-12 22:40:36 +0000
commitba3dafc8c940c5c26edf0dd5e22c0c59a3b89dad (patch)
treebc0fc2cbd74896f0491edc820f8f98034df97e72
parentb9d67a772da09c8055cba87a5e0f5a44a55b4f6f (diff)
downloademacs-ba3dafc8c940c5c26edf0dd5e22c0c59a3b89dad.tar.gz
emacs-ba3dafc8c940c5c26edf0dd5e22c0c59a3b89dad.zip
Restore the quote in the `silly' example.
-rw-r--r--lispref/functions.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/functions.texi b/lispref/functions.texi
index 78e4a44327e..67d68e40a9a 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.
811 811
812@smallexample 812@smallexample
813@group 813@group
814(setq silly (append (lambda (x)) (list (list '+ (* 3 4) 'x)))) 814(setq silly (append '(lambda (x)) (list (list '+ (* 3 4) 'x))))
815@result{} (lambda (x) (+ 12 x)) 815@result{} (lambda (x) (+ 12 x))
816@end group 816@end group
817@end smallexample 817@end smallexample