Search code examples
warningscommon-lispread-eval-print-loopclisp

Always continue in Lisp repl


I'm running a Common Lisp implementation called CLISP. I'd like to always continue when I hit a continuable ERROR, is there a variable I can set for this?

enter image description here


Solution

  • You have two options:

    1. Pass the -on-error command line option.

    2. Set a global handler.

    You now owe me 1 zorkmid :-).