Skip to content

Commit 14c8118

Browse files
author
pnathan
committed
Resolved conflicts
2 parents 3f2e31b + 46d8bae commit 14c8118

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

content-footer.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<p>&copy; 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>

env:emacs.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,22 @@ well-written help system! An emacs tutorial can be found
2525
and 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

3337
I 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")

0 commit comments

Comments
 (0)