I ran across a problem where a javascript library wanted me to pass an object with the attributes for a DOM object (MochiKit's createDOM), in which I wanted to include a 'class' attribute. But IE decides to choke on javascript that uses the word class in an object literal, unless it is escaped as a string. Since the javascript standard allows you to use strings and numbers as slot names in object literals, but parenscript's (create ....) didn't, I made this patch which fixes that, and allows one to do (create "class" "foobar").
<br><br>Regards,<br>Marijn<br>