From 691ed5030fd0211aa79a705badc257fe3747dac8 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 31 May 1993 22:33:29 +0000 Subject: [PATCH] Added a ``continue'' handler in comf around the compile-file so that if proceed is true and we get a non-continuable error, we will just punt the compile of that file, and not the load of worldcom or whatever was calling comf. --- tools/setup.lisp | 51 +++++++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/tools/setup.lisp b/tools/setup.lisp index 7c781afd4..1d47ca975 100644 --- a/tools/setup.lisp +++ b/tools/setup.lisp @@ -175,34 +175,37 @@ (ext:format-universal-time nil (get-universal-time)) name) (catch 'blow-this-file - (cond - (*interactive* - (if assem - (c::assemble-file src :output-file obj) - (compile-file src :error-file nil :output-file obj)) - (when load - (load name :verbose t))) - (t - (handler-bind ((error #'(lambda (condition) - (format *error-output* "~2&~A~2&" - condition) - (when proceed - (format *error-output* "Proceeding...~%") - (continue)) - (format *error-output* "Aborting...~%") - (handler-case - (let ((*debug-io* *error-output*)) - (debug:backtrace)) - (error (condition) - (declare (ignore condition)) - (format t "Error in backtrace!~%"))) - (format t "Error abort.~%") - (return-from comf)))) + (with-simple-restart + (continue "Blow this file") + (cond + (*interactive* (if assem (c::assemble-file src :output-file obj) (compile-file src :error-file nil :output-file obj)) (when load - (load name :verbose t))))))))) + (load name :verbose t))) + (t + (handler-bind + ((error #'(lambda (condition) + (format *error-output* "~2&~A~2&" + condition) + (when proceed + (format *error-output* "Proceeding...~%") + (continue)) + (format *error-output* "Aborting...~%") + (handler-case + (let ((*debug-io* *error-output*)) + (debug:backtrace)) + (error (condition) + (declare (ignore condition)) + (format t "Error in backtrace!~%"))) + (format t "Error abort.~%") + (return-from comf)))) + (if assem + (c::assemble-file src :output-file obj) + (compile-file src :error-file nil :output-file obj)) + (when load + (load name :verbose t)))))))))) -- GitLab