File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 33 < p > © Paul Nathan 2013</ p >
44 < p > < a href ="https://github.com/pnathan/articulate-common-lisp "> Github source</ a > - contributions welcome!</ p >
55 < p > Analytics by < a href ="https://www.quantcast.com/ "> Quantcast</ a >
6+ < p > Theme by < a href ="http://twitter.github.com/bootstrap/ "> Twitter Bootstrap</ a >
67</ footer >
78
89< center >
Original file line number Diff line number Diff line change @@ -25,17 +25,22 @@ well-written help system! An emacs tutorial can be found
2525and the GNU FAQ is also
2626[ available] ( http://www.gnu.org/software/emacs/emacs-faq.text )
2727
28- Usually you want to get SLIME installed for your development. If
29- you're using emacs23, SLIME can be found
30- [ here] ( http://www.common-lisp.net/project/slime/ ) . Emacs24 has it in
31- its package manager (` M-x package-list-packages ` ).
28+ Usually you want to get SLIME installed for your development.
29+
30+ If you're using emacs23, SLIME can be found
31+ [ here] ( http://www.common-lisp.net/project/slime/ ) .
32+
33+ Emacs24 has it in its package manager (` M-x package-list-packages ` ). However, I
34+ have not had good experiences with the SLIME found in the Marmalade emacs repo.
35+
3236
3337I like to use the following elisp to configure SLIME:
3438
3539```
40+ (require 'cl)
3641(setq inferior-lisp-program "/usr/local/bin/sbcl") ;modify to taste
3742(require 'slime)
38- (slime-setup '(slime-fancy) ;adds some nice features
43+ (slime-setup '(slime-fancy)) ;adds some nice features
3944
4045;; these give you unicode
4146(set-language-environment "UTF-8")
You can’t perform that action at this time.
0 commit comments