From d08b394edb36c45ae3b9d535135e5ef600f566f3 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Tue, 29 Sep 2009 01:27:33 +0000 Subject: [PATCH] 1.0.31.25: fix thinko in ECHO-N-BIN I happened to look at some STYLE-WARNINGs in octets.lisp and found this gem. Sometimes it's nice having a chatty compiler... --- src/code/stream.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/code/stream.lisp b/src/code/stream.lisp index 4158071..9003e42 100644 --- a/src/code/stream.lisp +++ b/src/code/stream.lisp @@ -1129,7 +1129,7 @@ ;; not work either. (when (echo-stream-unread-stuff stream) (let* ((char (read-char stream)) - (octets (octets-to-string + (octets (string-to-octets (string char) :external-format (stream-external-format diff --git a/version.lisp-expr b/version.lisp-expr index 25ce88e..6e86628 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.31.24" +"1.0.31.25" -- 1.7.10.4