Dear ABCL developers,
I'm currently adding source file encoding support to ASDF.
It will hopefully be part of ASDF 2.21, though the plan is that
anything but :utf-8 and :default requires an extension :asdf-encodings.
I didn't find any way with ABCL to detect the list of external formats,
or to determine is a given keyword is an acceptable name for an external format.
How do I do that?
—♯ƒ • François-René ÐVB Rideau •Reflection&Cybernethics• http://fare.tunes.org
If there's a book you really want to read but it hasn't been written yet,
then you must write it. — Toni Morrison [same with software, —♯f]
Hello,
I am trying to use ABCL 1.0.1 with slime under emacs and get the
following errors:
(progn (load "/usr/share/common-lisp/source/slime/swank-loader.lisp"
:verbose t) (funcall (read-from-string "swank-loader:init")) (funcall
(read-from-string "swank:start-server") "/tmp/slime.3985"
:coding-system "iso-latin-1-unix"))
Armed Bear Common Lisp 1.0.1-svn-13750-13751
Java 1.6.0_26 Sun Microsystems Inc.
Java HotSpot(TM) 64-Bit Server VM
Low-level initialization completed in 0.297 seconds.
Startup completed in 0.935 seconds.
Type ":help" for a list of available commands.
CL-USER(1): ; Loading /usr/share/common-lisp/source/slime/swank-loader.lisp ...
Error loading /usr/share/common-lisp/source/slime/swank-loader.lisp at
line 143 (offset 5611)
#<THREAD "interpreter" {33E136A8}>: Debugger invoked on condition of
type READER-ERROR
The package "ASDF" can't be found.
Restarts:
0: TOP-LEVEL Return to top level.
[1] SWANK-LOADER(2):
Here is my .emacs:
(add-to-list 'load-path "/usr/share/emacs/site-lisp/slime")
;;(setq inferior-lisp-program "/usr/local/bin/sbcl")
(setq inferior-lisp-program "java -cp
/home/arnaud/soft/abcl-bin-1.0.1/abcl-contrib.jar -jar
/home/arnaud/soft/abcl-bin-1.0.1/abcl.jar")
;; from http://functionalrants.wordpress.com/2008/09/06/how-to-set-up-emacs-slime-s…
(require 'slime)
(slime-setup '(slime-fancy))
Help greatly appreciated.
Thanks
Arnaud