For an app I want to release on #SailfishOS I feel the need to disable the debugger in #ECL. It should just exit the program like `sbcl --disable-debugger` but I haven't been able to figure out how.
@aerique @jackdaniel The debugger should only be entered for _unhandled_ conditions. So just handle all conditions in your top-level function and call os:exit or whatever.
Thanks, that works!
Been using CL for 25+ years but I'm one of those "debug with print statements" guys