From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Giorgos Keramidas Newsgroups: gmane.emacs.help Subject: Re: why I cannot run lisp in emacs?? :( Date: Tue, 16 Oct 2007 23:44:53 +0300 Organization: SunSITE.dk - Supporting Open source Message-ID: <87hckqu6uy.fsf@kobe.laptop> References: <1192501571.275260.310720@t8g2000prg.googlegroups.com> <87zlyjtdt8.fsf@W0053328.mgh.harvard.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1192696890 18223 80.91.229.12 (18 Oct 2007 08:41:30 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 18 Oct 2007 08:41:30 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 18 10:41:29 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IiQwT-00024i-Kj for geh-help-gnu-emacs@m.gmane.org; Thu, 18 Oct 2007 10:41:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IiQwM-0005TP-Jn for geh-help-gnu-emacs@m.gmane.org; Thu, 18 Oct 2007 04:41:14 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!goblin1!goblin2!goblin.stu.neva.ru!news.net.uni-c.dk!dotsrc.org!filter.dotsrc.org!news.dotsrc.org!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/23.0.50 (berkeley-unix) Cancel-Lock: sha1:S5NIeeZQJnNqJ11vjbjwCew3snA= Original-Lines: 24 Original-NNTP-Posting-Host: 81.186.70.56 Original-X-Trace: news.sunsite.dk DXC=Ce5BW\9aQZkVPh8EAZ[i2lYSB=nbEKnkkebg1>^?UCAjL^MjgX7f^UIZ@YZiDfi1fj61OKjMofHfP7f8Qj Original-X-Complaints-To: staff@sunsite.dk Original-Xref: shelby.stanford.edu gnu.emacs.help:153018 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:48523 Archived-At: On Tue, 16 Oct 2007 09:00:03 -0400, jadamson@partners.org (Joel J. Adamson) wrote: > thinkreverse writes: > [...] >> but the emacs report "Searching for projram: no such file or >> directory, lisp"...... :( > > (setq inferior-lisp-program clisp) ; for example if your lisp program > ; is clisp You might want to quote the value of `inferior-lisp-program': (setq inferior-lisp-program "clisp") > You should change the variable "inferior-lisp-program" to your > installation of a Common Lisp interpreter. By default it's set to > "lisp" --- I had to change it to "clisp." Alternatively, you can arrange for `lisp' to be a symlink to the proper binary. In my case, this is: keramida@kobe:/usr/local/bin> ls -l lisp lrwxr-xr-x 1 root wheel - 4 Jun 4 23:39 lisp -> sbcl keramida@kobe:/usr/local/bin>