Re: Strange eval behavior on user-defined macros

2011-12-26 Thread Meikel Brandmeyer
Hi, eval happens with *ns* bound to clojure-core. Try to fully qualify make-list. Sincerely Meikel PS: In case you are Chris on SO, I answered your question there also. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send ema

Strange eval behavior on user-defined macros

2011-12-26 Thread Chris McBride
I'm working on a project where I want to use clojure macros in part of my config file that I eval at runtime. However, I'm getting an "Unable to resolve symbol" exception. So I made a test case to reproduce it below: (ns test.core (:gen-class)) (defmacro make-list [& body] `(list ~@body)) (d