This works for me under CCL and CLisp. I think whether this will work depends on your implementation and, possibly, your OPTIMIZE settings. You can try:
(declaim (optimize (debug 3)))
After that, you will have to recompile your code for it to take effect.
Or maybe if your implementation supports interpretation, you can try this because some implementations provide better debugging options for interpreted ones than for compiled code.
danlei
source share