Prev: New search engine
Next: UsB thinclient software
From: .Martin. on 2 Dec 2009 15:56 Hi I downloaded slime and edited .emacs. When I load M-x slime, the message is: Process inferior-lisp not running. I don't think I installed lisp. There's no: /opt/sbcl/bin/sbcl on my system (as specified in .emacs I tried to find sbcl, but sbcl is not present at all. I'm trying to find common lisp online, but I can't. What am I missing here? thanks
From: Glyn Millington on 2 Dec 2009 16:18 ".Martin." <mherda(a)gmail.com> writes: > Hi > I downloaded slime and edited .emacs. When I load M-x slime, the message > is: Process inferior-lisp not running. > > I don't think I installed lisp. There's no: > > /opt/sbcl/bin/sbcl on my system (as specified in .emacs > I tried to find sbcl, but sbcl is not present at all. > > I'm trying to find common lisp online, but I can't. What > am I missing here? In an xterm $clisp Slackware comes with Gnu CLISP In my .emacs I have this commented out becasue I don't have much use for slime nowadays ;; (add-to-list 'load-path "~/elisp/slime/") ;; (setq inferior-lisp-program "/usr/bin/clisp") ; your Lisp system ;; (require 'slime) ;; ; (slime-setup) ;; (slime-setup '(slime-repl)) That should get you started! atb Glyn -- RTFM http://www.tldp.org/index.html GAFC http://slackbook.org/ The Official Source :-) STFW http://groups.google.com/groups?hl=en&group=alt.os.linux.slackware JFGI http://jfgi.us/
From: =?utf-8?Q?Jos=C3=A9?= Manuel =?utf-8?Q?Ga?==?utf-8?Q?rc=C3=ADa-Patos?= on 2 Dec 2009 16:34 > I downloaded slime and edited .emacs. When I load M-x slime, the message > is: Process inferior-lisp not running. If you're using Slackware, you'll most probably have GNU CLISP installed (not the most recent version, though). If that's the case, what you have to do is add the following lines to your ~/.emacs file: (add-to-list 'load-path "/your/path/to/slime") (require 'slime) (setq inferior-lisp-program "/usr/bin/clisp -K full" ;; The following lines are optional lisp-indent-function 'common-lisp-indent-function slime-complete-symbol-function 'slime-fuzzy-complete-symbol slime-complete-symbol*-fancy t) (slime-setup) Of course, if you want to use SBCL instead, you can do it, but you'll have to install it first, and change your ~/.emacs accordingly. I, myself, use ECL and CLISP, and I'm doing fine. I would also recommend to have the Hyperspec installed and accesible via emacs-w3m. Hope that helps. -- José Manuel García-Patos Madrid
From: .Martin. on 2 Dec 2009 16:50 Glyn Millington wrote: > ".Martin." <mherda(a)gmail.com> writes: > >> Hi >> I downloaded slime and edited .emacs. When I load M-x slime, the message >> is: Process inferior-lisp not running. >> >> I don't think I installed lisp. There's no: >> >> /opt/sbcl/bin/sbcl on my system (as specified in .emacs >> I tried to find sbcl, but sbcl is not present at all. >> >> I'm trying to find common lisp online, but I can't. What >> am I missing here? > > In an xterm > > > $clisp > > Slackware comes with Gnu CLISP > > > In my .emacs I have this commented out becasue I don't have much use for > slime nowadays > > ;; (add-to-list 'load-path "~/elisp/slime/") > ;; (setq inferior-lisp-program "/usr/bin/clisp") ; your Lisp system > ;; (require 'slime) > ;; ; (slime-setup) > ;; (slime-setup '(slime-repl)) > > That should get you started! > > atb > > > Glyn Thanks, Are there any significant differences between CLISP and Common Lisp? ..martin.
From: .Martin. on 2 Dec 2009 16:53
José Manuel García-Patos wrote: >> I downloaded slime and edited .emacs. When I load M-x slime, the message >> is: Process inferior-lisp not running. > > If you're using Slackware, you'll most probably have GNU CLISP > installed (not the most recent version, though). If that's the case, > what you have to do is add the following lines to your ~/.emacs file: > > (add-to-list 'load-path "/your/path/to/slime") > (require 'slime) > > (setq inferior-lisp-program "/usr/bin/clisp -K full" > ;; The following lines are optional > lisp-indent-function 'common-lisp-indent-function > slime-complete-symbol-function 'slime-fuzzy-complete-symbol > slime-complete-symbol*-fancy t) > > (slime-setup) > > Of course, if you want to use SBCL instead, you can do it, but you'll have > to install it first, and change your ~/.emacs accordingly. I, myself, use > ECL and CLISP, and I'm doing fine. > > I would also recommend to have the Hyperspec installed and accesible via > emacs-w3m. > > Hope that helps. > Thanks, What's hyperspec? I've googled that it's an online version of Common Lisp. So I'd have Clisp and online Common Lisp? thanks |