From: Raffael Cavallaro on
On 2010-03-05 10:14:19 -0500, Juanjo said:

> important fixes to let ECL work better with Slime

would you mind posting a minimal .emacs that allows ecl to interact
properly with slime? I've built ecl 10.3.1 with threads and unicode if
that matters.

warmest regards,

Ralph

--
Raffael Cavallaro

From: Juanjo on
On Mar 6, 11:23 pm, Raffael Cavallaro
<raffaelcavall...(a)pas.espam.s.il.vous.plait.mac.com> wrote:
> On 2010-03-05 10:14:19 -0500, Juanjo said:
>
> > important fixes to letECLwork better with Slime
>
> would you mind posting a minimal .emacs that allowseclto interact
> properly with slime? I've builtecl10.3.1 with threads and unicode if
> that matters.

Just so that people know, the problems that Raffael solved were
unrelated to Slime and ECL. Any minimalistic Slime setup would do. I
have been recommended the following one, which works ok, giving a REPL
and other niceties.

(add-to-list 'load-path "~/src/lisp/slime/") ; your SLIME directory
(setq inferior-lisp-program "ecl") ; your Lisp system
(require 'slime)
(slime-setup '(slime-fancy slime-asdf))