archimag / cl-closure-template

Common Lisp implementation of Google's Closure Templates.
Other
71 stars 23 forks source link

Fix remainder operator in js backend #13

Closed andy128k closed 11 years ago

andy128k commented 11 years ago

Remainder operator is broken in js backend. It generates

'variable'('var') % 2

instead of

$$data$$.var % 2.

Parenscript claims that % is obsolete while rem is works well.