[fix rebind (in the obsolete ucw parenscript repo) attila.lendvai@gmail.com**20070802191343] { hunk ./src/js.lisp 325 -(defjsmacro rebind (variables expression) +(defjsmacro rebind (variables &rest body) hunk ./src/js.lisp 330 - hunk ./src/js.lisp 335 - do (setf variable (symbol-to-js variable)) - collect `(setf (slot-value new-context ,variable) (slot-value this ,variable))) + collect `(setf (slot-value new-context ,(symbol-to-js variable)) + ,variable)) hunk ./src/js.lisp 338 - (return ,expression)))))) + ,@body))))) }