[Fixed js-with WARNING: this involves syntax change attila.lendvai@gmail.com**20060716163946 Previously the syntax of with was this: (with (object) body) now it's: (with object body) It was also broken when 'object' was an expression... ] { hunk ./src/js.lisp 338 - (with (new-context) + (with new-context hunk ./src/js.lisp 1205 - :obj (js-compile-to-expression (first statement)) - :body (js-compile-to-body (cons 'progn body) :indent " "))) + :obj (js-compile-to-expression statement) + :body (js-compile-to-body (cons 'progn body) :indent " "))) }