Install slime on emacs error

僤鯓⒐⒋嵵緔 提交于 2019-12-08 09:33:15

问题


IDE for common lisp like lispbox,lispstick do not work on my windows,so I try to directly install slime on my emacs,but the error still happened.

Debugger entered: (("Error in timer" slime-attempt-connection (#<process inferior-lisp> nil 4) (file-error "make client process failed" "too many open files" :name "SLIME Lisp" :buffer nil :host "127.0.0.1" :service 6605 :nowait nil)))
  (condition-case data (apply fun args) ((debug error) (debug nil (list "Error in timer" fun args data))))
  slime-timer-call(slime-attempt-connection #<process inferior-lisp> nil 4)
  apply(slime-timer-call (slime-attempt-connection #<process inferior-lisp> nil 4))
  byte-code("r\301\302H\303H\"\210)\301\207" [timer apply 5 6] 4)
  timer-event-handler([t 21613 26304 366000 nil slime-timer-call (slime-attempt-connection #<process inferior-lisp> nil 4) nil 0])

Here is my .emacs file

(add-to-list 'load-path "C:/Users/Administrator/Desktop/slime-master/") ;your SLIME directory
(setq inferior-lisp-program "D:/eugene_software/sbcl64/sbcl.exe");your Lisp system
(require 'slime)
(slime-setup '(slime-fancy))
(require 'slime-autoloads)

来源:https://stackoverflow.com/questions/26908598/install-slime-on-emacs-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!