[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: handling errors
- To: clisp-list <clisp-list@ma2s2.mathematik.uni-karlsruhe.de>
- Subject: Re: handling errors
- From: Don Cohen <donc@ISI.EDU>
- Date: Mon, 18 Mar 96 22:38:53 PST
- In-reply-to: Your message of "Tue, 19 Mar 96 01:05:40 +0100." <9603182343.AA05932@marie.ma.utexas.edu>
You asked about auto continue, right?
For redefinitions?
This works for me:
(handler-bind
((t #'(lambda (c) (declare (ignore c))
(when (find-restart 'continue) (invoke-restart 'continue)))))
(load ...))
where the file redefines lisp functions.
Of course, you also tend to get the cerrors on compile, but you can
do the same thing there.