We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7669e90 commit 9d7f0faCopy full SHA for 9d7f0fa
Dockerfile
@@ -47,3 +47,10 @@ RUN emacs --batch --load ${emacs_home}/init.el
47
48
# --- miscs --- #
49
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