From 61ee31770518a0442dda62c5839aeac5499a019f Mon Sep 17 00:00:00 2001 From: polos Date: Tue, 21 Apr 2020 12:48:09 +0200 Subject: [PATCH] IMPORTANT FIX: change Swank connection style to :SPAWN (old solution is not stable) --- slime/eql-start-swank.lisp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/slime/eql-start-swank.lisp b/slime/eql-start-swank.lisp index 23171bc..75ca4fa 100644 --- a/slime/eql-start-swank.lisp +++ b/slime/eql-start-swank.lisp @@ -17,9 +17,6 @@ ;; uncomment for Slime mode "REPL Hook" ;; (setf eql:*slime-mode* :repl-hook) -(mp:process-run-function :swank (lambda () - (swank:create-server - :port 4005 - :style nil - :dont-close t))) ; allow to quit/restart Emacs without affecting running EQL programs - +(swank:create-server :port 4005 + :style :spawn + :dont-close t) ; allow to quit/restart Emacs without affecting running EQL programs