Macros and how to trace them

前端 未结 3 1895
迷失自我
迷失自我 2021-01-25 23:10

The trace macro is very useful for debugging. But it comes to a halt, when used upon any macro. Like if I try to do the following :

CL-USER> (trace push)
         


        
3条回答
  •  佛祖请我去吃肉
    2021-01-25 23:47

    *macroexpand-hook* is the expected method for tracing macros.

    http://www.lispworks.com/documentation/HyperSpec/Body/v_mexp_h.htm#STmacroexpand-hookST

提交回复
热议问题