Bind the parameter param:standard-error-hook like this:
(param:standard-error-hook
(lambda (condition)
(abort->nearest (condition/report-string condition))))
On 10/4/21 5:08 AM, Tim Lee wrote:
Is there a setting for disabling the REPL's debugger?
I only want to see the error message, without being prompted with:
"To continue, call RESTART with an option number ...".
In MIT Scheme, I tried:
(set! repl:allow-restart-notifications? #f)
But that only removes the prompt message without actually removing the
prompt.