On Sun, Nov 23, 2008 at 7:50 PM, Ralf Bensmann <[EMAIL PROTECTED]> wrote: > Sorry! Yes I missed the backqoute... > > user=> (macroexpand-1 `(t "c" 0)) > (def *c* 0)
No need for a back tick. A normal quote works fine: user=> (macroexpand-1 '(t "c" 0)) (def *c* 0) -- Michael Wood <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ 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 To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---