From: Tamas K Papp on
Hi,

Sometimes, when I use a macro inside a function and compile that
function, SBCL gives me notes/style warnings about certain things,
which refer to the expanded macro. Most of the time I can map them in
my head to the source, but sometimes seeing those warnings in their
place would be nicer. I am using SLIME in Emacs.

Currently I do this: expand the macro (C-c C-m), remove the #'s before
gensym-generated variables, copy & paste it in place of the original
source, which I commend out. This is a bit tedious, I am wondering if
there is a better way of doing this.

Thanks,

Tamas
From: Janne Ronkonen on
'M-x slime-macroexpand-all-inplace' might be a good start.

JR