Skip to content
Snippets Groups Projects
Commit 388a4eb0 authored by wlott's avatar wlott
Browse files

Change (info type kind 'stream) to :instance so the defstruct doesn't flame

out.
parent 63ea91d4
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
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