Update of /project/clhp/cvsroot/clhp In directory common-lisp.net:/tmp/cvs-serv18113
Modified Files: BUGS Log Message: Found a bug where only one variable can be bound in a LET form.
Date: Tue Oct 21 14:48:53 2003 Author: aventimiglia
Index: clhp/BUGS diff -u clhp/BUGS:1.1 clhp/BUGS:1.2 --- clhp/BUGS:1.1 Wed Oct 1 10:01:47 2003 +++ clhp/BUGS Tue Oct 21 14:48:52 2003 @@ -1,2 +1,10 @@ -$Id: BUGS,v 1.1 2003/10/01 14:01:47 aventimiglia Exp $ -*- outline -*- +$Id: BUGS,v 1.2 2003/10/21 18:48:52 aventimiglia Exp $ -*- outline -*-
+* Let forms are not evaluated properly. + It seems that putting more than one declaration in a let binding + does not work: in other words: + + (let ((x 0)) x) Works while: + (let ((x 0) (y 1)) (+ x y)) fails. + + I'll have to dissect soon.