From: Magnus Henoch Date: Tue, 30 Sep 2008 15:54:46 +0000 (+0000) Subject: cl.texi (Porting Common Lisp): Fix parenthesis order in example. X-Git-Tag: emacs-pretest-23.0.90~2714 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=db7a4b661b49c8749f55818d1c6bfaa8dc46d4e1;p=emacs.git cl.texi (Porting Common Lisp): Fix parenthesis order in example. --- diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 29165252fe9..f34684125e0 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,3 +1,7 @@ +2008-09-30 Magnus Henoch + + * cl.texi (Porting Common Lisp): Fix parenthesis order in example. + 2008-09-30 Jay Belanger * calc.texi (User Defined Units): Mention how to enter optional display diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index 60a1e055f3d..b31fce71921 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi @@ -5153,7 +5153,7 @@ Emacs Lisp: 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