[Fixed (?) quoting mechanism attila.lendvai@gmail.com**20070416131133 (js:js (+ 42 '"FoooFFFOFOFooo")) => "42 + FoooFFFOFOFooo;" IOW, quote inside a parenscript form means to simply print the quoted value as-is. Among other things, this is useful for inserting literal javascript into parenscript. I hope it will not break anything. ] { hunk ./src/js.lisp 489 +;;; quote + +(defjsclass js-quote (expression) + ()) + hunk ./src/js.lisp 1416 - (second form)) + (make-instance 'js-quote :value (second form))) }