Hello ParenScripters,<br><br>I have modified the behavior of keywords found in Parenscript source to be parsed into (PS-QUOTE keyword) instead of (JS-VARIABLE keyword).  This seems to make more sense because in Lisp, evaluating a keyword yields the keyword itself rather than the value bound to it.  As a result, the ability to paass keyword arguments to functions is now restored.<br>

<br>CL-USER> (ps:ps (foo "bar" :quix "quo" :etc "etc..."))<br>"foo('bar', { quix : 'quo', etc : 'etc...' });"<br><br>Whereas this used to yield foo('bar', quix, 'quo', etc, 'etc...')<br>

<br>In general, symbols occupy a strange place in Parenscript.  Javascript has no analogue of Lisp symbols, so there is no sensible translation of symbols that works for everyone.  Nonetheless, quoted symbols are used in many Parenscript macros to fake having real symbols in javascript.  We could build in the ability to translate symbols to some javascript form, e.g.<br>

<br>(ps:ps (make-instance 'animal)) =>  makeInstance( symbolTable["ANIMAL"] )<br><br>The latter part of this post is just food for thought.  I will go ahead and commit the patch for the former part of this post unless someone objects.<br>

<br>Red<br>