From b65b937e9ec22e9c94447cc08977c42d1dca0d67 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Thu, 11 Feb 1999 12:17:58 +0000 Subject: [PATCH] Fix for the stream-write-byte dispatch in write-byte; from Brian Spilsbury. --- code/stream.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/stream.lisp b/code/stream.lisp index 6213d023d..45bbb5e4b 100644 --- a/code/stream.lisp +++ b/code/stream.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.38 1999/02/02 10:54:32 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.39 1999/02/11 12:17:58 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -631,7 +631,8 @@ (defun write-byte (integer stream) "Outputs the Integer to the binary Stream." - (with-out-stream stream (lisp-stream-bout integer) (stream-write-byte)) + (with-out-stream stream (lisp-stream-bout integer) + (stream-write-byte integer)) integer) -- GitLab