diff --git a/code/struct.lisp b/code/struct.lisp
index 75e276822c8da4a6884df95df50792f35cacaa38..094036bb302d6d31f16e8bdf681fff207705e6af 100644
--- a/code/struct.lisp
+++ b/code/struct.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/struct.lisp,v 1.15 1993/02/26 08:26:18 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/struct.lisp,v 1.16 1993/04/04 10:00:34 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -22,6 +22,12 @@
 (deftype in-buffer-type ()
   `(simple-array (unsigned-byte 8) (,in-buffer-length)))
 
+;;; Change the kind of stream to :instance so that the defstruct doesn't flame
+;;; out.
+;;; 
+(eval-when (compile eval)
+  (setf (info type kind 'stream) :instance))
+
 (defstruct (stream (:predicate streamp) (:print-function %print-stream))
   ;;
   ;; Buffered input.