Is it possible to establish a condition handler at the REPL in such a way that it can handle conditions that occur at the REPL?
So, for example, if I were sitting at my SLIME prompt, and I tried to evaluate
I think the answer is no, you'd have to establish the handler in an enclosing form.
I assume you could establish such a handler from SLIME; is there another way?
So, for example, if I were sitting at my SLIME prompt, and I tried to evaluate
CL-USER> (foo)
where #'foo was not bound, I'd like to be able to effectively handle it by calling (bar 'foo).I think the answer is no, you'd have to establish the handler in an enclosing form.
I assume you could establish such a handler from SLIME; is there another way?
~garethw