mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
20 lines
645 B
Common Lisp
20 lines
645 B
Common Lisp
;;; This file is intended to be loaded by an implementation to
|
|
;;; get a running swank server
|
|
;;; e.g. ecl -load start-swank.lisp
|
|
;;;
|
|
;;; Default port is 4005
|
|
|
|
;;; For additional swank-side configurations see
|
|
;;; 6.2 section of the Slime user manual.
|
|
|
|
(load (merge-pathnames "swank-loader.lisp" *load-truename*))
|
|
|
|
(swank-loader:init
|
|
:delete t ; delete any existing SWANK packages
|
|
:reload nil ; reload SWANK, even if the SWANK package already exists
|
|
:load-contribs t) ; load all contribs
|
|
|
|
(swank:create-server :port 4005
|
|
:style :spawn
|
|
:dont-close t) ; allow to quit/restart Emacs
|
|
|