I have seen "Compiling script" appear twice -- once for the string "script" and once for the symbol script.
I guess one could do (cons (symbol main-ns) namespaces) since there is a wrapping distinct. Not sure if namespaces will always contain a symbol version of main-ns.
Don't know if it's really a problem, but it appears one can end up with redundant compilations invoking
build
.main-ns
inbuild
is typically a string IIUC.namespaces
appears to have symbols in it and may end up including the namespace thatmain-ns
refers to.Thus,
(cons main-ns namespaces)
can end up with a string version ofmain-ns
as well as a symbol version:I have seen "Compiling script" appear twice -- once for the string "script" and once for the symbol
script
.I guess one could do
(cons (symbol main-ns) namespaces)
since there is a wrappingdistinct
. Not sure ifnamespaces
will always contain a symbol version ofmain-ns
.