I'm trying to learn common lisp currently and I've been using sbcl (I hope that's a decent implementation choice.)
Coming from ruby and irb I find the automatic moved to a debugger on every mistake a little annoying at this time. Is there a way to turn it off temporarily when I'm playing around.
Common Lisp has a variable *debugger-hook*, which can be bound/set to a function.
There is a
--disable-debugger
command-line option, e.g.:From the man page:
There are also
--noinform
and--noprint
CL options you may find useful.