Skip to content

Commit

Permalink
Change README to say chicken-install is prefered setup method
Browse files Browse the repository at this point in the history
  • Loading branch information
nickg committed Jan 15, 2011
1 parent 9368146 commit e61bea7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,3 +1,3 @@
*.o
*.so
swank.import.scm
slime.import.scm
12 changes: 11 additions & 1 deletion README
Expand Up @@ -10,6 +10,9 @@ Quickstart:

1) chicken-install fmt symbol-utils apropos chicken-doc

2) Run chicken-install in the directory where you cloned the repository: this
will install the `slime' extension.

2) Add chicken-slime.el to your Emacs load-path

3) Add the following to your .emacs
Expand All @@ -18,7 +21,6 @@ Quickstart:
; Refer to the SLIME manual for setup instructions

(autoload 'chicken-slime "chicken-slime" "SWANK backend for Chicken" t)
(setq swank-chicken-path "/path/to/swank-chicken.scm")

;; If your csi executable is in a non-standard location
(setq slime-csi-path "/path/to/csi")
Expand All @@ -34,6 +36,14 @@ M-x chicken-slime
Note for the describe and apropos commands to work you must install a
local copy of the Chicken documentation.

If you want to hack on the SWANK server set the following variable:

(setq swank-chicken-path "/path/to/swank-chicken.scm")

This will interpret the code rather than loading the extension. Note
there is currently a bug in the interpreted version which causes a
SEGV when viewing local variables in a call frame.

--

Report all bugs, etc. to nick AT nickg DOT me DOT uk.

0 comments on commit e61bea7

Please sign in to comment.