X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fclass.lisp;h=535914c6cadb9688c04216667c1b90b6a8e32e17;hb=77d1a39f28fe8d240cf441a9a54a80d4bc98ea52;hp=3b0b40de4d5a8d63c2b2030fe9f8fff6e92f661d;hpb=412fb51c01281e2bdf2805415267545f64b0ab0e;p=sbcl.git diff --git a/src/code/class.lisp b/src/code/class.lisp index 3b0b40d..535914c 100644 --- a/src/code/class.lisp +++ b/src/code/class.lisp @@ -1271,12 +1271,18 @@ NIL is returned when no such class exists." :inherits (symbol list sequence) :direct-superclasses (symbol list) :prototype-form 'nil) - (stream :state :read-only :depth 3 - :inherits (instance) - :prototype-form (make-broadcast-stream))))) + :inherits (instance)) + (file-stream + :state :read-only + :depth 5 + :inherits (stream)) + (string-stream + :state :read-only + :depth 5 + :inherits (stream))))) ;;; See also src/code/class-init.lisp where we finish setting up the ;;; translations for built-in types.