diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-01-12 22:40:36 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-01-12 22:40:36 +0000 |
commit | ba3dafc8c940c5c26edf0dd5e22c0c59a3b89dad (patch) | |
tree | bc0fc2cbd74896f0491edc820f8f98034df97e72 /lispref/functions.texi | |
parent | b9d67a772da09c8055cba87a5e0f5a44a55b4f6f (diff) |
Restore the quote in the `silly' example.
Diffstat (limited to 'lispref/functions.texi')
-rw-r--r-- | lispref/functions.texi | 2 |
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 |