[armedbear-cvs] r11791 - trunk/abcl/src/org/armedbear/lisp
Alessio Stalla
astalla at common-lisp.net
Tue Apr 28 18:43:58 UTC 2009
Author: astalla
Date: Tue Apr 28 14:43:56 2009
New Revision: 11791
Log:
Added autoload for system::%float-bits. Its absence prevented Slime from
loading in certain situations, when launched from Java using Interpreter.eval().
Modified:
trunk/abcl/src/org/armedbear/lisp/Autoload.java
Modified: trunk/abcl/src/org/armedbear/lisp/Autoload.java
==============================================================================
--- trunk/abcl/src/org/armedbear/lisp/Autoload.java (original)
+++ trunk/abcl/src/org/armedbear/lisp/Autoload.java Tue Apr 28 14:43:56 2009
@@ -606,6 +606,7 @@
autoload(PACKAGE_SYS, "cache-slot-location", "StandardGenericFunction", true);
autoload(PACKAGE_SYS, "canonicalize-logical-host", "LogicalPathname", true);
autoload(PACKAGE_SYS, "class-direct-slots", "SlotClass");
+ autoload(PACKAGE_SYS, "%float-bits", "FloatFunctions");
autoload(PACKAGE_SYS, "coerce-to-double-float", "FloatFunctions");
autoload(PACKAGE_SYS, "coerce-to-single-float", "FloatFunctions");
autoload(PACKAGE_SYS, "compute-class-direct-slots", "SlotClass", true);
More information about the armedbear-cvs
mailing list