Search found 5 matches

by jreeseUE
Tue Aug 02, 2011 2:42 pm
Forum: Common Lisp
Topic: Not sure about package management in Lisp
Replies: 5
Views: 6455

Re: Not sure about package management in Lisp

Nice...this works just fine. Thanks again.
by jreeseUE
Sun Jul 31, 2011 8:02 am
Forum: Common Lisp
Topic: Not sure about package management in Lisp
Replies: 5
Views: 6455

Re: Not sure about package management in Lisp

Great. Thanks for your replies...I am slowly working through this setup stuff. I had slime working until I tried the 'slime-fancy addition. My .emacs: (setq inferior-lisp-program "sbcl") (require 'cl) (push "/usr/loca/bin" exec-path) (push "/usr/texbin" exec-path) (push...
by jreeseUE
Thu Jul 28, 2011 8:44 pm
Forum: Emacs
Topic: slime causes error in Mac OS X emacs23.1.1-nox
Replies: 2
Views: 23602

Re: slime causes error in Mac OS X emacs23.1.1-nox

Very good! Thanks for your reply. That line was wrong...as I misinterpreted it. Changed to:

Code: Select all

(setq inferior-lisp-program "/opt/local/bin/sbcl") ; your Lisp system

Thanks again!.
by jreeseUE
Thu Jul 28, 2011 8:01 am
Forum: Common Lisp
Topic: Not sure about package management in Lisp
Replies: 5
Views: 6455

Not sure about package management in Lisp

Hello, I have been learning Lisp through the 'Common Lisp Cookbook' recently and am having some trouble with package management. I have created two files: packages.lisp and pathnames.lisp that look as follows: packages.lisp: (defpackage :edu.american.spam (:use :common-lisp :edu.american.pathnames))...
by jreeseUE
Thu Jul 28, 2011 7:55 am
Forum: Emacs
Topic: slime causes error in Mac OS X emacs23.1.1-nox
Replies: 2
Views: 23602

slime causes error in Mac OS X emacs23.1.1-nox

Hello, I am running Mac OS X 10.6.8 with Emacs 23.1.1-nox and am trying to get slime running within my Emacs. I've installed slime (at least I believe I have) appropriately in "~/.emacs.d/slime/" and added the appropriate lines to my .emacs file as per the Emacs site's instructions: (setq ...