Update of /cvsroot/sbcl/sbcl/src/code
In directory usw-pr-cvs1:/tmp/cvs-serv22149/src/code
Modified Files:
early-fasl.lisp
Log Message:
0.7.6.8:
Final deletion of %DETECT-STACK-EXHAUSTION, as per APD sbcl-devel
2002-07-26
... delete export of %D-S-E
... increase fasl file version number
Minor BUGS cleanup and cross-referencing
Index: early-fasl.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/src/code/early-fasl.lisp,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- early-fasl.lisp 9 Jul 2002 14:18:40 -0000 1.23
+++ early-fasl.lisp 26 Jul 2002 10:03:42 -0000 1.24
@@ -42,7 +42,7 @@
;;; versions which break binary compatibility. But it certainly should
;;; be incremented for release versions which break binary
;;; compatibility.
-(def!constant +fasl-file-version+ 29)
+(def!constant +fasl-file-version+ 30)
;;; (record of versions before 0.7.0 deleted in 0.7.1.41)
;;; 23 = sbcl-0.7.0.1 deleted no-longer-used EVAL-STACK stuff,
;;; causing changes in *STATIC-SYMBOLS*.
@@ -55,6 +55,8 @@
;;; 28: (2002-05-08) new convention for foreign symbols to support
;;; dynamic loading in OpenBSD
;;; 29: (2002-06-24) removed *!INITIAL-FDEFN-OBJECTS* from static symbols
+;;; 30: (2002-07-26) deleted all references to %DETECT-STACK-EXHAUSTION,
+;;; which was introduced in version 25
;;; the conventional file extension for our fasl files
(declaim (type simple-string *fasl-file-type*))
|