8 lines
214 B
Common Lisp
8 lines
214 B
Common Lisp
;; Connect in emacs with slime-connect on port 4004
|
|
|
|
(require :swank)
|
|
(swank-loader:init)
|
|
(swank:create-server :port 4004
|
|
:style swank:*communication-style*
|
|
:dont-close t)
|