From f0a39310ecd5d1813fa1084807b286ba6a465da7 Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Mon, 19 Jan 2009 01:15:58 +0100 Subject: [PATCH] Fix superclass list of OCTET-MEMORY-ZSTREAM and CHARACTER-MEMORY-ZSTREAM. --- io.streams/zeta/stream.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io.streams/zeta/stream.lisp b/io.streams/zeta/stream.lisp index b2c8442..f99470d 100644 --- a/io.streams/zeta/stream.lisp +++ b/io.streams/zeta/stream.lisp @@ -24,10 +24,10 @@ (defclass memory-zstream (memory-buffer zstream) ()) -(defclass octet-memory-zstream (memory-zstream) +(defclass octet-memory-zstream (octet-memory-buffer memory-zstream) ()) -(defclass character-memory-zstream (memory-zstream) +(defclass character-memory-zstream (character-memory-buffer memory-zstream) ()) -- 2.11.4.GIT