Reputation: 1073
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?
Upvotes: 1
Views: 114
Reputation: 60014
You have two options:
Pass the -on-error command line option.
Set a global handler.
You now owe me 1 zorkmid :-).
Upvotes: 4