Another syntax error in the new PS. This form:
(let ((blah (let ((x (foo)))
(if (null x) y z)))))... compiles to... var blah = x = foo(), x == null ? y : z; ... which is incorrect. Previously, PS produced this, which is correct: var blah = (x = foo(), x == null ? y : z); Daniel
_______________________________________________ parenscript-devel mailing list [email protected] http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel
