0

我正在运行 Aquamacs + Slime,当我启动 Aquamacs 时,我能够自动启动 Slime。但是,当我尝试加载 lisp 文件之后,我会不断收到各种错误,具体取决于我尝试加载文件的方式。这是我的preferences.el

(setq inferior-lisp-program "~/ccl/dx86cl64"
  slime-startup-animation nil)
(require 'slime)
(split-window-horizontally)
(other-window 1)
(slime)
(eval-after-load "slime"
   '(progn 
       (slime-compile-and-load-file "/Users/xxxxx/xxxxx/load-seq.lisp")
 )) 

我收到以下错误

error: Buffer *inferior-lisp* is not associated with a file.

我已经尝试过其他功能,包括load compile-and-loadslime-load-file并分别得到以下错误......

Invalid read syntax: #
Symbol's function definition is void: compile-and-load
error: Not connected.

当我(load "/Users/xxxxx/xxxxx/load-seq.lisp")从 slime REPL 执行时,lisp 文件可以正常加载(和编译)。似乎当我将它放在 Preferences.el 中时,即使我使用的是eval-after-load.

4

1 回答 1

5

你碰巧误解了slime-compile-and-load-file函数的使用。它的文档字符串说:

(slime-compile-and-load-file &optional POLICY)

编译并加载缓冲区的文件并突出显示编译器注释。

该函数对已经与当前缓冲区关联的文件进行操作,并且它需要一个编译策略,而不是文件名,作为它的(可选)参数。所以你的代码应该是这样的:

(slime)
(add-hook 'slime-connected-hook
          (lambda ()
            (find-file "/Users/xxxxx/xxxxx/load-seq.lisp")
            (slime-compile-and-load-file)))

其中slime-connected-hook包含当 SLIME 连接到 Lisp 服务器时要调用的函数列表。

但我不确定 Emacs 初始化文件是否是加载此类非 Emacs Lisp 代码的正确位置。CCL 初始化文件将是一个更好的地方。参见2.4。使用CCL 手册中的初始化文件进行个人定制。

此外,该load函数用于执行 Emacs Lisp 代码。slime-load-file是一个正确的调用函数,但它碰巧被调用得太早(或者在 SLIME 连接到 Lisp 服务器之前)。slime-connected-hook如果它被添加到钩子中,它会起作用的。slime-load-file实际上,如果您在slime-compile-and-load-file启动 Emacs 时没有正当理由编译 Lisp 代码(并且您真的想在 Emacs 中这样做),我想建议您不要这样做:

(add-hook 'slime-connected-hook
          (lambda ()
            (slime-load-file "/Users/xxxxx/xxxxx/load-seq.lisp")))

最后,没有调用函数compile-and-load

于 2012-08-10T18:36:56.770 回答