The error branch in the win32 DLOPEN-OR-LOSE was calling
SHARED-OBJECT-SAP instead of SHARED-OBJECT-HANDLE. (Patch from
by Yaroslav Kavenchuk, sbcl-devel "Re: Where define shared-object-sap"
on 2006-02-26).
(handle (loadlibrary file)))
(aver file)
(when (zerop handle)
- (setf (shared-object-sap obj) nil)
+ (setf (shared-object-handle obj) nil)
(error "Error opening shared object ~S:~% ~A."
file (getlasterror)))
(setf (shared-object-handle obj) handle)
;;; 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.10.11"
+"0.9.10.12"