Am 05.05.2011 02:01, schrieb Ken Wesson:

(There's an ugly workaround
involving explicitly calling intern; you create a dummy namespace with
a var holding the object, and then eval code that refers to that var
by fully-qualified name in order to retrieve the object.)

Yes, this is what I currently do.
In the macro I do
(let [f (gensym "logger")]
  (intern 'my.ns f @*logger*)
  `(~f ~level ...)))

which pollutes the ns of my lib, but for now this works.
Much better would be of course if the core team of Clojure would
implement what you outlined.


Greetings,
André

--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to