cl.texi (Porting Common Lisp): Fix parenthesis order in example.

This commit is contained in:
Magnus Henoch 2008-09-30 15:54:46 +00:00
parent a03c5807a3
commit db7a4b661b
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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