Hello,
I have a big list of global variables that each have thier own setup function. My goal is to go through this list, call it's setup function, and generate some stats on the data loaded in.
The globals and thier setup functions are case-sensitive (this came from xml and is necessary for uniqueness).
The data looks something like this
'(ABCD ABC\d AB\c\d ...)
and the setup fns look like:
(defun setup_ABCD...
(defun setup_ABC\d...
I've tried concatenating them together and turning the resulting string into a function but this interferes with the namespace of the previously loaded setup function.
(make-symbol(concatenate 'string "setup_" (symbol-name(first '(abc\d)))))
But funcalling this doesn't work
Any ideas? Thanks in advance