Here's one thing that the latest PS breaks in our code.<br><br>(ps (list 1 2 3))<br>=><br>"[1,2,3];"<br><br>(ps (let ((list nil))<br>          (setf list (list 1 2 3))))<br>=> <br>"var list5180 = null;<br>

list5180 = list5180(1, 2, 3);"<br><br>I think this behavior is incorrect. It is quite surprising for a lexical variable to shadow a macro definition.<br><br>Daniel<br>