(string-downcase (string thing)) should be written (string-downcase thing)
The fdefinition trick is not a good one. Define the functions at compile-time, not at runtime.
I learnt this trick only after working on CL for a couple of years!
And thanks for the (string-downcase thing) trick, I'll update that right now :)
(string-downcase (string thing)) should be written (string-downcase thing)
The fdefinition trick is not a good one. Define the functions at compile-time, not at runtime.