Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv17301
Modified Files:
NEWS version.lisp-expr
Log Message:
0.9.16.3: initfile refactoring
* Move all related logic to PROCESS-INIT-FILE.
* Enable customization of default user- and sysinit file via
SB-IMPL::*SYSINIT-PATHNAME-FUNCTION* and
SB-IMPL::*USERNIT-PATHNAME-FUNCTION*.
* Fixes -- and makes testable without root access -- the bug
regarding loading of the default sysinit file, reported by Leonid
Slobodov.
* A few missing #!+sb-doc's in toplevel.lisp.
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.1053
retrieving revision 1.1054
diff -u -d -r1.1053 -r1.1054
--- NEWS 28 Aug 2006 12:14:30 -0000 1.1053
+++ NEWS 28 Aug 2006 16:56:47 -0000 1.1054
@@ -2,6 +2,8 @@
changes in sbcl-0.9.17 (0.9.99?) relative to sbcl-0.9.15:
* bug fix: ENOUGH-NAMESTRING on pathnames with no name and a pattern
for a type now works.
+ * bug fix: loading of default sysinit file works. (thanks to Leonid
+ Slobodov)
changes in sbcl-0.9.16 relative to sbcl-0.9.15:
* feature: implemented the READER-METHOD-CLASS and
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.2966
retrieving revision 1.2967
diff -u -d -r1.2966 -r1.2967
--- version.lisp-expr 28 Aug 2006 12:14:30 -0000 1.2966
+++ version.lisp-expr 28 Aug 2006 16:56:47 -0000 1.2967
@@ -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.16.2"
+"0.9.16.3"
|