changeset 98415:c3d8410a0701

cl.texi (Porting Common Lisp): Fix parenthesis order in example.
author Magnus Henoch <mange@freemail.hu>
date Tue, 30 Sep 2008 15:54:46 +0000
parents d97aba892b93
children a0f0ccc831a1
files doc/misc/ChangeLog doc/misc/cl.texi
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/doc/misc/ChangeLog	Tue Sep 30 12:52:46 2008 +0000
+++ b/doc/misc/ChangeLog	Tue Sep 30 15:54:46 2008 +0000
@@ -1,3 +1,7 @@
+2008-09-30  Magnus Henoch  <mange@freemail.hu>
+
+	* cl.texi (Porting Common Lisp): Fix parenthesis order in example.
+
 2008-09-30  Jay Belanger  <jay.p.belanger@gmail.com>
 
 	* calc.texi (User Defined Units): Mention how to enter optional display
--- a/doc/misc/cl.texi	Tue Sep 30 12:52:46 2008 +0000
+++ b/doc/misc/cl.texi	Tue Sep 30 15:54:46 2008 +0000
@@ -5153,7 +5153,7 @@
         collect (if flag x (funcall func x))))
 
 (defun add-odd-elements (list x)
-  (map-odd-elements (lambda (a) (+ a x))) list)
+  (map-odd-elements (lambda (a) (+ a x)) list))
 @end example
 
 @noindent