Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2371
Modified Files:
NEWS version.lisp-expr
Log Message:
0.9.1.30:
* Fix compile on x86-64 (popfl -> popfq).
* Declarations in a DOLIST body are also in scope for the
DOLIST return-form.
* Evaluate the ELEMENT-TYPE keyword argument to
WITH-OUTPUT-TO-STRING even in cases where the element-type is
not used (i.e. FILL-POINTER-OUTPUT-STREAM), in case it has
side-effects.
* COMPILE-FILE accepts all pathname designators as INPUT-FILE
and OUTPUT-FILE (streams weren't accepted before).
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.804
retrieving revision 1.805
diff -u -d -r1.804 -r1.805
--- NEWS 8 Jun 2005 08:49:49 -0000 1.804
+++ NEWS 8 Jun 2005 10:36:17 -0000 1.805
@@ -37,6 +37,12 @@
** always return NIL from PPRINT-POP when OBJECT is NIL
** don't signal errors when pretty-printing malformed LABELS,
FLET or MACROLET forms
+ ** declarations in a DOLIST body are also in scope for the
+ DOLIST return-form
+ ** COMPILE-FILE accepts all pathname designators as INPUT-FILE
+ and OUTPUT-FILE
+ ** the ELEMENT-TYPE keyword argument to WITH-OUTPUT-STREAM is
+ always evaluated
changes in sbcl-0.9.1 relative to sbcl-0.9.0:
* fixed cross-compiler leakages that prevented building a 32-bit
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.2174
retrieving revision 1.2175
diff -u -d -r1.2174 -r1.2175
--- version.lisp-expr 8 Jun 2005 08:49:49 -0000 1.2174
+++ version.lisp-expr 8 Jun 2005 10:36:17 -0000 1.2175
@@ -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.1.29"
+"0.9.1.30"
|