On Tue, 19 Feb 2008 10:51:53 -0500, Mark Harig wrote:
If there is no synchronization problem between your files and the CVS repository, then it may be helpful for you to provide the Emacs-lisp code that you use to setup and start SLIME.
As an addendum: my current deviations in the REPL all do:
(load "swank-loader.lisp") (swank-loader:init) (swank:start-server "/tmp/slime.foobar" :coding-system "utf-8-unix")
I'm trying to mimic what my slime startup does:
(progn (load "/LISP/slime/swank-loader.lisp" :verbose t) (funcall (read-from-string "swank-loader:init")) (funcall (read-from-string "swank:start-server") "/tmp/slime.7449" :coding-system "utf-8-unix"))
(My indentation). Hmm, iff I change my REPL pattern to:
(load "swank-loader.lisp") (swank-loader:init) (swank-loader:load-swank) ; <====== (swank:start-server "/tmp/slime.foobar" :coding-system "utf-8-unix")
Everything works fine ....
Cheers, RalfD