From: Brian Mastenbrook Date: Fri, 12 Aug 2005 11:56:13 +0000 (+0000) Subject: 0.9.3.46: "oops". I didn't mean to write an infinite loop there. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=04553847c4e0235ec0a78e96204ff08b86fc6cd7;p=sbcl.git 0.9.3.46: "oops". I didn't mean to write an infinite loop there. --- diff --git a/src/compiler/srctran.lisp b/src/compiler/srctran.lisp index 5a1a358..69bc5e1 100644 --- a/src/compiler/srctran.lisp +++ b/src/compiler/srctran.lisp @@ -339,7 +339,7 @@ (defun coerce-for-bound (val type) (if (consp val) - (list (coerce-for-bound val)) + (list (coerce-for-bound (car val) type)) (cond ((subtypep type 'double-float) (if (<= most-negative-double-float val most-positive-double-float) diff --git a/version.lisp-expr b/version.lisp-expr index 95ec3c3..a5b7af1 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".) -"0.9.3.45" +"0.9.3.46"