M.R.
M.R.

Reputation: 1073

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

Upvotes: 1

Views: 114

Answers (1)

sds
sds

Reputation: 60014

You have two options:

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

  2. Set a global handler.

You now owe me 1 zorkmid :-).

Upvotes: 4

Related Questions