Some generated symbol names are not uppercase because they are produced
by forms like
(intern (format nil "MAKE-~A" symbol) package)
This produces symbols whose names look like "MAKE-symbol" when
*print-case* is set to :downcase. Replace all these forms by calls
to alexandria:format-symbol, which handles case correctly.
Some generated symbol names are not uppercase because they are produced by forms like
This produces symbols whose names look like "MAKE-symbol" when
*print-case*
is set to:downcase
. Replace all these forms by calls toalexandria:format-symbol
, which handles case correctly.Fixes #27.