archimag / cl-closure-template

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

Lispify Common Lisp package name #18

Closed alexey-martynov closed 11 years ago

alexey-martynov commented 11 years ago

Small improvement for "lispify-string": dash inserted only before upper case letters and after lower case letters and digits.

archimag commented 11 years ago

In #'lispify-string instead (with prev-char) is better to use (for prev-char previous ch). See http://common-lisp.net/project/iterate/doc/Parallel-Binding-and-Stepping.html for detail. Can you change it?

alexey-martynov commented 11 years ago

I've updated code to use Iterate.