Macro debugging

2008-12-01 Thread Konrad Hinsen
For debugging a set of macros, I would like to see the form that a given expression is expanded into by the compiler. My first try was macroexpand, of course, but as its docstring says very well, it doesn't expand macros in subforms. Is there any function that does? In other words, given

Re: Macro debugging

2008-12-01 Thread Mark McGranaghan
Konrad, You might find this group post on a recursive macroexpand useful: http://groups.google.com/group/clojure/browse_thread/thread/bba604cee3b232d9/28837d55525306d8?lnk=gstq=recursive+macroexpand#28837d55525306d8 - Mark On Mon, Dec 1, 2008 at 9:25 AM, Konrad Hinsen [EMAIL PROTECTED] wrote:

Re: Macro debugging

2008-12-01 Thread Konrad Hinsen
On 01.12.2008, at 15:28, Mark McGranaghan wrote: You might find this group post on a recursive macroexpand useful: http://groups.google.com/group/clojure/browse_thread/thread/ bba604cee3b232d9/28837d55525306d8?lnk=gstq=recursive +macroexpand#28837d55525306d8 Thanks! Like the original