0

我正在使用以下教程:

http://www.pchristensen.com/blog/articles/installing-clisp-emacs-and-slime-on-windows-xp/

我已经设置了所有目录并下载了所有必要的文件。但是,在第 4 步中。我使用的是 emacs 命令“eval-buffer”。我输入我的设置,运行“eval-buffer”,收到反馈(在底部栏中),并假设一切正常。然后,当我运行 Mx "slime" 时,我收到了错误:

Spawning child process: invalid argument

我以为我在 .emacs 文件中输入了错误的内容,所以我重新编辑了它。但是,现在当我尝试运行 Mx "eval-buffer" 时,我没有收到任何反馈,而且我不相信我的新代码会执行。

顺便说一句,我的文件是:

    (setq inferior-lisp-program "C:/Documents and Settings/U9UW/Desktop/root/bin/clisp/full/lisp.exe -B C:/Documents and Settings/U9UW/Desktop/root/bin/clisp/full -M 
C:/Documents and Settings/U9UW/Desktop/root/bin/clisp/full/lispinit.mem -ansi -q")
(add-to-list 'load-path "C:/Documents and Settings/U9UW/Desktop/root/bin/emacs/site-lisp/slime/")
(require 'slime)
(slime-setup)
4

1 回答 1

2

eval-buffer 实际上正在评估。要解决“产生子进程:无效参数”的问题,必须将第一行替换为:

(setq inferior-lisp-program “clisp”)
于 2012-02-16T18:41:52.103 回答