Load slime with custom sbcl core image
This commit is contained in:
parent
d320d3ce2b
commit
aed6caa7fc
1 changed files with 8 additions and 1 deletions
|
@ -12,6 +12,12 @@
|
|||
slime-editing-commands
|
||||
slime-sbcl-exts))
|
||||
|
||||
;; shell$ sbcl
|
||||
;; * (mapc 'require '(sb-bsd-sockets sb-posix sb-introspect sb-cltl2 asdf))
|
||||
;; * (save-lisp-and-die "sbcl.core-for-slime")
|
||||
(setq slime-lisp-implementations
|
||||
'((sbcl ("sbcl" "--core" "/home/marcus/sbcl.core-for-slime"))))
|
||||
|
||||
(defvar mk/hyperspec-dir-locations
|
||||
'("d:/visua/projects/personal/lisp-docs/HyperSpec-7-0/HyperSpec/"
|
||||
"~/projects/personal/lisp-docs/HyperSpec-7-0/HyperSpec/"
|
||||
|
@ -89,10 +95,11 @@ Uses `mk/hyperspec-dir-locations' to find the directory."
|
|||
:mode (("\\.lisp$" . lisp-mode)
|
||||
("\\.lsp$" . lisp-mode)
|
||||
("\\.cl$" . lisp-mode))
|
||||
:config
|
||||
:init
|
||||
(if (eq system-type 'windows-nt)
|
||||
(setq inferior-lisp-program "sbcl --noinform")
|
||||
(setq inferior-lisp-program "/usr/bin/sbcl --noinform"))
|
||||
:config
|
||||
(defvar g-cl-function-names
|
||||
'("*" "+" "-" "/" "/=" "1+" "1-" "<" "<=" "=" ">"
|
||||
">=" "abort" "abs" "acons" "acos" "acosh" "add-method" "adjoin"
|
||||
|
|
Loading…
Add table
Reference in a new issue