blob: c008f1164f958e7dad57fcec06768a8233b3aec3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
post_install() {
cat << EOF
:: To make use of slime, add the following lines to your
:: init file:
(setq inferior-lisp-program "/path/to/lisp-executable")
(add-to-list 'load-path "/usr/share/emacs/site-lisp/slime/")
(require 'slime)
(slime-setup)
:: Then run 'M-x slime' from within emacs.
EOF
}
post_upgrade() { post_install; }
post_remove() {
cat << EOF
You may want to remove slime related stuff from your init file
especially the inferior-lisp-program variable
EOF
}
|