Update of /cvsroot/sbcl/sbcl
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv24494
Modified Files:
version.lisp-expr NEWS
Log Message:
1.0.34.3: Fix second return value of GET-MACRO-CHARACTER.
GET-MACRO-CHARACTER always refered to *READTABLE* when computing its
second return value (the non-terminating-p flag) rather than to the
readtable that may have been passed explicitly.
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.4713
retrieving revision 1.4714
diff -u -d -r1.4713 -r1.4714
--- version.lisp-expr 30 Dec 2009 22:54:27 -0000 1.4713
+++ version.lisp-expr 4 Jan 2010 15:55:21 -0000 1.4714
@@ -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.34.2"
+"1.0.34.3"
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.1661
retrieving revision 1.1662
diff -u -d -r1.1661 -r1.1662
--- NEWS 30 Dec 2009 20:09:45 -0000 1.1661
+++ NEWS 4 Jan 2010 15:55:21 -0000 1.1662
@@ -1,4 +1,8 @@
;;;; -*- coding: utf-8; fill-column: 78 -*-
+changes relative to sbcl-1.0.34:
+ * bug fix: GET-MACRO-CHARACTER bogusly computed its second return value
+ always relative to *READTABLE* rather than the passed argument.
+
changes in sbcl-1.0.34 relative to sbcl-1.0.33:
* minor incompatible change: threading support is now enabled by default
on x86[-64] Linux.
|