Christian Lynbech <[EMAIL PROTECTED]> writes: > Is there a simple way (ie. without replacing the standard REPL) to > make errors merely print out and not going into the debugger?
Maybe something like this? CL-USER ==> (defun debug::real-invoke-debugger (condition) (format *error-output* "~&~a~%" condition) (throw 'lisp::top-level-catcher nil)) debug::real-invoke-debugger CL-USER ==> (cons 1) Invalid number of arguments: 1 CL-USER ==> (/ 1 0) Arithmetic error division-by-zero signalled. Operation was kernel::division, operands (1 0). CL-USER ==>
