From command line I can start clisp with a key "-on-error abort" and in case of error, the REPL will just print an error which I can read and fix.
To type the key in command line all the times is tiresome and I want to set this mode in $HOME/.clisprc.lisp.
How to do it?
I found this page: https://clisp.sourceforge.io/impnotes/r ... al-handler
But I guess I do not understand how to read it.
It looks like I need to call a macro EXT:ABORT-ON-ERROR, but when I do it:
Code: Select all
[1]> (EXT:abort-on-error )
NIL
[2]>
Documentation also mentions that the macro supposed to have some parameter form, but what is it?