From aa088b8747bfa6de349fc99655f3b511970c6677 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Wed, 18 Apr 2007 06:00:00 +0000 Subject: [PATCH] 1.0.4.100: gray streams manual fixes * From Richard Kreuter --- doc/manual/gray-streams-examples.texinfo | 5 +++-- version.lisp-expr | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/manual/gray-streams-examples.texinfo b/doc/manual/gray-streams-examples.texinfo index 6868a66ce..b2d3ed11d 100644 --- a/doc/manual/gray-streams-examples.texinfo +++ b/doc/manual/gray-streams-examples.texinfo @@ -47,13 +47,14 @@ character input streams must implement @codew{stream-read-char} and @end group @group -(defclass wrapped-character-input-stream (wrapped-stream) +(defclass wrapped-character-input-stream + (wrapped-stream fundamental-character-output-stream) ()) @end group @group (defmethod stream-read-char ((stream wrapped-character-input-stream)) - (read-char (stream-of stream))) + (read-char (stream-of stream) nil :eof)) @end group @group diff --git a/version.lisp-expr b/version.lisp-expr index 2878932d8..2104c16c5 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.4.99" +"1.0.4.100" -- 2.11.4.GIT