X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fir1report.lisp;h=6dbedfb0bc15436b92f51b44a351765543443908;hb=ca267caa3bdb897a93a1e69ae7300ba3ba5d391f;hp=d8d529c283ea96d41d4e7aa1bb4468816adf90f7;hpb=b1b85bbf17f686a0787304a04cf0e01e8216d038;p=sbcl.git diff --git a/src/compiler/ir1report.lisp b/src/compiler/ir1report.lisp index d8d529c..6dbedfb 100644 --- a/src/compiler/ir1report.lisp +++ b/src/compiler/ir1report.lisp @@ -247,9 +247,9 @@ ;;; count when we are done. (defun note-message-repeats (&optional (terpri t)) (cond ((= *last-message-count* 1) - (when terpri (terpri *error-output*))) + (when terpri (terpri *standard-output*))) ((> *last-message-count* 1) - (format *error-output* "~&; [Last message occurs ~W times.]~2%" + (format *standard-output* "~&; [Last message occurs ~W times.]~2%" *last-message-count*))) (setq *last-message-count* 0)) @@ -268,7 +268,7 @@ (defun %print-compiler-message (format-string format-args) (declare (type simple-string format-string)) (declare (type list format-args)) - (let ((stream *error-output*) + (let ((stream *standard-output*) (context (find-error-context format-args))) (cond (context @@ -295,7 +295,6 @@ (format stream "in:~{~<~% ~4:;~{ ~S~}~>~^ =>~}" in)) (format stream "~%")) - (unless (and last (string= form (compiler-error-context-original-source last))) @@ -411,7 +410,7 @@ has written, having proved that it is unreachable.")) (signal condition) (muffle-warning () (return-from maybe-compiler-notify (values)))) - (let ((stream *error-output*)) + (let ((stream *standard-output*)) (pprint-logical-block (stream nil :per-line-prefix ";") (format stream " note: ~3I~_") (pprint-logical-block (stream nil) @@ -428,8 +427,8 @@ has written, having proved that it is unreachable.")) (defun compiler-mumble (format-string &rest format-args) (note-message-repeats) (setq *last-error-context* nil) - (apply #'format *error-output* format-string format-args) - (force-output *error-output*) + (apply #'format *standard-output* format-string format-args) + (force-output *standard-output*) (values)) ;;; Return a string that somehow names the code in COMPONENT. We use