(defun blah () (let ((result (foo))) (unless (null result) (throw result))))
generates the syntactically incorrect:
function blah() { var result = foo(); return result != null ? (throw result) : null; };
Thanks for spotting that. Just pushed a fix.
Vladimir
2010/12/7 Daniel Gackle danielgackle@gmail.com:
(defun blah () (let ((result (foo))) (unless (null result) (throw result)))) generates the syntactically incorrect: function blah() { var result = foo(); return result != null ? (throw result) : null; }; _______________________________________________ parenscript-devel mailing list parenscript-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel
parenscript-devel@common-lisp.net