Stefan Arentz wrote:
> 
> I'm trying to do this:
> 
> (defmacro my-defn [name & body]
>    `(defn- #^{ :foo-tag "blah" } ~name []
>       ~...@body))
> 
> The idea is that foo will be defined and that {:foo-tag "blah"} is  
> added to its meta-data.
> 
> But that does not seem to work:

Try this:

(defmacro my-defn [name & body]
   `(defn- ~(with-meta name  {:foo-tag "blah"})  []
       ~...@body))


--~--~---------~--~----~------------~-------~--~----~
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