Debugging Lisp: trace options, break on conditions

from blog Lisp journey, | ↗ original
Those are useful Common Lisp debugging tricks. Did you know about trace options? We see how trace accepts options. Especially, we see how we can break and invoke the interactive debugger before or after a function call, how we can break on a condition (“this argument equals 0”) and how we can enrich the trace output. But we only scratch the...