From 388a4eb0283f2c24e2c5f68c6d2bd46f8e32abec Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sun, 4 Apr 1993 10:00:34 +0000
Subject: [PATCH] Change (info type kind 'stream) to :instance so the defstruct
 doesn't flame out.

---
 code/struct.lisp | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/code/struct.lisp b/code/struct.lisp
index 75e276822..094036bb3 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.
-- 
GitLab