These commands get you out of the debugger.
Invokes the nth restart case as displayed by the
error
command. If n is not specified, the available restart cases are reported.
Calls
continue
on the condition given todebug
. If there is no restart case named continue, then an error is signaled.
Calls
abort
on the condition given todebug
. This is useful for popping debug command loop levels or aborting to top level, as the case may be.
Returns value from the current stack frame. This command is available when the
debug
optimization quality is greater than bothspeed
andspace
. Care must be taken that the value is of the same type as SBCL expects the stack frame to return.
Restarts execution of the current stack frame. This command is available when the
debug
optimization quality is greater than bothspeed
andspace
and when the frame is for is a global function. If the function is redefined in the debugger before the frame is restarted, the new function will be used.