> On Tue, Apr 28, 2009 at 8:48 PM, Alessio Stalla <alessiostalla@...> wrote:
> ;; Error while loading:
> /home/alessio/.slime/fasl/2009-01-10/armedbear-0.15.0-dev-linux-unknown/swank-backend.abcl
> ;; Condition: The function SYSTEM::%FLOAT-BITS is undefined.
.
> If I run the same Lisp code from the REPL (in or outside Eclipse), or
> using the Emacs command M-x slime, everything goes fine.
> Has someone got any clue about the problem? I can fix it myself, but I
> don't really know where to look.
Add
autoload("%float-bits", "FloatFunctions");
into the static block in Autoload.java?
I don't have swank in an operational mode, I can't test such a patch.
The patch would be something like
Index: src/org/armedbear/lisp/Autoload.java
===================================================================
--- src/org/armedbear/lisp/Autoload.java (revision 11787)
+++ src/org/armedbear/lisp/Autoload.java (working copy)
@@ -378,6 +378,7 @@
autoload("file-string-length", "file_string_length");
autoload("file-write-date", "file_write_date");
autoload("float", "FloatFunctions");
+ autoload("%float-bits", "FloatFunctions");
autoload("float-digits", "FloatFunctions");
autoload("float-radix", "FloatFunctions");
autoload("float-sign", "float_sign");
|