bakpakin / Fennel

Lua Lisp Language
https://fennel-lang.org
MIT License
2.42k stars 124 forks source link

Fix bad code generated for names containing backslashes #465

Closed dokutan closed 11 months ago

dokutan commented 12 months ago

Fixes #464

technomancy commented 12 months ago

Thanks! This works, but it would be better to use %q in string.format instead of %s since we can get Lua to handle this for us.

dokutan commented 12 months ago

Thanks, i entirely missed the %q specifier while searching for a solution.

technomancy commented 11 months ago

Thanks!