Skip to content

Commit 9d7f0fa

Browse files
committed
Fix the problem when slime-restart-inferior-list using ccl-bin
1 parent 7669e90 commit 9d7f0fa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,10 @@ RUN emacs --batch --load ${emacs_home}/init.el
4747

4848
# --- miscs --- #
4949
WORKDIR /root
50+
51+
# --- others --- #
52+
# Avoid the following error when slime-restart-inferior-lisp using ccl-bin.
53+
# (("Error in timer" slime-attempt-connection (#<process inferior-lisp> nil 10) (file-error "Failed connect" "Connection refused")))
54+
# This refers https://stackoverflow.com/questions/9161871/slime-doesnt-work-in-emacs24
55+
RUN find . -name "slime.el" | xargs sed -ie "s/\(lexical-binding:\)t/\1nil/" && \
56+
find . -name "slime.elc" | xargs rm

0 commit comments

Comments
 (0)