From 576e192035c3b6a2101eb423cec2fa286ad5ba81 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Fri, 30 Oct 2009 18:44:34 +0000 Subject: [PATCH] 1.0.32.9: fix thinko in DEFINE-EXTERNAL-FORMAT/VARIABLE-WIDTH Users of this OUTPUT-BYTES/FOO function must have been perfect. --- src/code/fd-stream.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/code/fd-stream.lisp b/src/code/fd-stream.lisp index cc026d4..655ee64 100644 --- a/src/code/fd-stream.lisp +++ b/src/code/fd-stream.lisp @@ -1463,7 +1463,7 @@ (declare (type index start end)) (synchronize-stream-output stream) (unless (<= 0 start end (length string)) - (sequence-bounding-indices-bad string start end)) + (sequence-bounding-indices-bad-error string start end)) (do () ((= end start)) (let ((obuf (fd-stream-obuf stream))) diff --git a/version.lisp-expr b/version.lisp-expr index a8e79b7..f235319 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.32.8" +"1.0.32.9" -- 1.7.10.4