[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: handling errors



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.