Skip to content
Snippets Groups Projects
Commit 2ca06427 authored by pw's avatar pw
Browse files

In stream-init, give *debug-io* its very own stream to tty rather

than using *terminal-io*. This lets debugger work even if someone
binds *terminal-io* to an output only stream and then enters the
debugger.
parent 79f25573
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.51 2000/06/19 16:08:38 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.52 2000/08/24 14:56:17 pw Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1454,7 +1454,7 @@ ...@@ -1454,7 +1454,7 @@
*standard-output*)) *standard-output*))
(setf *error-output* (make-synonym-stream '*stderr*)) (setf *error-output* (make-synonym-stream '*stderr*))
(setf *query-io* (make-synonym-stream '*terminal-io*)) (setf *query-io* (make-synonym-stream '*terminal-io*))
(setf *debug-io* *query-io*) (setf *debug-io* (make-synonym-stream '*tty*))
(setf *trace-output* *standard-output*) (setf *trace-output* *standard-output*)
nil) nil)
......
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