Thanks! It worked.<div><br></div><div>soichi<br><br><div class="gmail_quote">2011/10/29 Nikodemus Siivola <span dir="ltr"><<a href="mailto:nikodemus@random-state.net">nikodemus@random-state.net</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">On 6 October 2011 12:08, ishi soichi <<a href="mailto:soichi777@gmail.com">soichi777@gmail.com</a>> wrote:<br>
<br>
> The installation of sbcl is fine.  I can launch sbcl in terminal.<br>
<br>
> But when launching slime in Emacs, it give an error<br>
> Searching for program: no such file or directory, sbcl<br>
> Can anyone tell my what's wrong with my setting?<br>
> in .emacs file, I have written the following.<br>
> ;;-------------<br>
> (setq inferior-lisp-program "/usr/local/bin/sbcl --noinform")<br>
> (setq slime-lisp-implementations<br>
>       '((sbcl ("sbcl") :coding-system utf-8-unix)<br>
>         (cmucl ("cmucl") :coding-system iso-latin-1-unix)))<br>
<br>
</div>I'm guessing that either /usr/local/bin isn't in the PATH when Emacs<br>
is looking for sbcl.<br>
<br>
Put (sbcl ("/usr/local/bin/sbcl") :coding-system utf-8-unix) there<br>
instead: inferior-lisp-program is not used when<br>
slime-lisp-implementations is provided.<br>
<br>
> (add-to-list 'load-path "~/.emacs.d/slime")<br>
<br>
...unless this of course has something that overrides the stuff above.<br>
<br>
> (slime-setup)<br>
<br>
I think you'll probably want (slime-setup '(slime-fancy)) here.<br>
<br>
Cheers,<br>
<font color="#888888"><br>
 -- Nikodemus<br>
</font></blockquote></div><br></div>