Hello,
I'm using CVS SLIME and went into the following problem:
I start slime with M-x slime, then change the current directory with <comma> !d, and do a compile-system. Everything compiles fine, but when I try to call any function with (dora:start) or (dora::list-items) I get: package "DORA" not found.
When I do it in a shell as
cd .devel/dora && sbcl --eval "(asdf:oos 'asdf:load-op :dora)" --eval "(dora:start)"
it works. Am I missing something?
Thank you for your reply.
-- '(Yours parenthetically), peter barabas.
((call/cc call/cc) (call/cc call/cc))
On Fri, 7 Oct 2005 15:29:46 +0200, Peter BARABAS peter.barabas@gmail.com wrote:
I start slime with M-x slime, then change the current directory with <comma> !d, and do a compile-system. Everything compiles fine, but when I try to call any function with (dora:start) or (dora::list-items) I get: package "DORA" not found.
When I do it in a shell as
cd .devel/dora && sbcl --eval "(asdf:oos 'asdf:load-op :dora)" --eval "(dora:start)"
it works. Am I missing something?
Yes. Use load-system instead of compile-system. Note that in the shell you also used LOAD-OP and not COMPILE-OP.