Skip to content
Snippets Groups Projects
Commit 1c743327 authored by ram's avatar ram
Browse files

Changed COMPILE-FILE to set *COMPILER-ERROR-OUTPUT* to *ERROR-OUTPUT*

before it closes the output file, so that any compiler error stuff
during the load of a :LOAD T compile will go somewhere, rather than
gagging on a closed stream
parent 720d63b2
No related branches found
No related tags found
No related merge requests found
...@@ -1323,6 +1323,10 @@ ...@@ -1323,6 +1323,10 @@
(when error-file-stream (when error-file-stream
(let ((name (pathname error-file-stream))) (let ((name (pathname error-file-stream)))
;;
;; Leave this var pointing to something reasonable in case someone
;; tries to use it before the LET ends, e.g. during the LOAD.
(setq *compiler-error-output* *error-output*)
(close error-file-stream) (close error-file-stream)
(when (and compile-won (not error-severity)) (when (and compile-won (not error-severity))
(delete-file name)))) (delete-file name))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment