Oops. After some recent changes, SBCL couldn't be built with 0.9.13 or
0.9.14 as the host. Add a workaround to allow using them too
(the actual bug was fixed in 0.9.14.19).
(dolist (code codes)
(setf (svref res code) layout)))))))
(setq *null-classoid-layout*
- (locally
- (declare (notinline find-classoid))
+ ;; KLUDGE: we use (LET () ...) instead of a LOCALLY here to
+ ;; work around a bug in the LOCALLY handling in the fopcompiler
+ ;; (present in 0.9.13-0.9.14.18). -- JES, 2006-07-16
+ (let ()
+ (declare (notinline find-classoid))
(classoid-layout (find-classoid 'null))))
#-sb-xc-host (/show0 "done setting *BUILT-IN-CLASS-CODES*"))
\f
;;; 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.14.19"
+"0.9.14.20"