From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: thinkreverse Newsgroups: gmane.emacs.help Subject: Re: why I cannot run lisp in emacs?? :( Date: Mon, 12 Nov 2007 18:45:28 -0800 Organization: http://groups.google.com Message-ID: <1194921928.544639.111020@k35g2000prh.googlegroups.com> References: <1192501571.275260.310720@t8g2000prg.googlegroups.com> <87zlyjtdt8.fsf@W0053328.mgh.harvard.edu> <87hckqu6uy.fsf@kobe.laptop> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Trace: ger.gmane.org 1194925245 25702 80.91.229.12 (13 Nov 2007 03:40:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 13 Nov 2007 03:40:45 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Nov 13 04:40:49 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 1Irmds-0005T9-U2 for geh-help-gnu-emacs@m.gmane.org; Tue, 13 Nov 2007 04:40:49 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Irmdg-0004TR-E3 for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Nov 2007 22:40:36 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!k35g2000prh.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 29 Original-NNTP-Posting-Host: 192.165.214.193 Original-X-Trace: posting.google.com 1194921929 26167 127.0.0.1 (13 Nov 2007 02:45:29 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Tue, 13 Nov 2007 02:45:29 +0000 (UTC) In-Reply-To: <87hckqu6uy.fsf@kobe.laptop> User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6,gzip(gfe),gzip(gfe) X-HTTP-Via: 1.1 netcache1 (NetCache NetApp/6.0.6P1D6) Complaints-To: groups-abuse@google.com Injection-Info: k35g2000prh.googlegroups.com; posting-host=192.165.214.193; posting-account=ps2QrAMAAAA6_jCuRt2JEIpn5Otqf_w0 Original-Xref: shelby.stanford.edu gnu.emacs.help:153738 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:49188 Archived-At: On Oct 17, 4:44 am, Giorgos Keramidas wrote: > On Tue, 16 Oct 2007 09:00:03 -0400, jadam...@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> Thank you for your kindly helping. :)