在 Emacs 中安装 Clojure 时收到很多警告和错误

问题描述 投票:0回答:1

我使用了 EPL 包管理器并安装了 clojure -mode.el v1.5

我在安装主要模式时遇到这些错误

In clojure-mode:
clojure-mode.el:174:34:Warning: reference to free variable `paredit-mode'
clojure-mode.el:174:51:Warning: reference to free variable `paredit-version'

In clojure-font-lock-extend-region-def:
clojure-mode.el:210:33:Warning: reference to free variable `font-lock-beg'
clojure-mode.el:217:30:Warning: assignment to free variable `font-lock-beg'
clojure-mode.el:218:33:Warning: reference to free variable `font-lock-end'
clojure-mode.el:220:19:Warning: assignment to free variable `font-lock-end'

In clojure-font-lock-extend-region-comment:
clojure-mode.el:235:26:Warning: reference to free variable `font-lock-beg'
clojure-mode.el:232:49:Warning: reference to free variable `font-lock-end'
clojure-mode.el:236:17:Warning: assignment to free variable `font-lock-beg'
clojure-mode.el:240:17:Warning: assignment to free variable `font-lock-end'

In clojure-indent-function:
clojure-mode.el:357:33:Warning: reference to free variable
    `calculate-lisp-indent-last-sexp'

In clojure-slime-config:
clojure-mode.el:533:11:Warning: assignment to free variable
    `swank-clojure-classpath'

In end of data:
clojure-mode.el:630:1:Warning: the following functions are not known to be defined:
    imenu--generic-function, slime-setup,
    swank-clojure-slime-mode-hook

然后当我尝试 M-x clojure-install 时,我得到了

cannot find file cmdproxy.exe in the emac's bin folder.

这些是什么意思?我不想使用 ClojureBox。

emacs clojure
1个回答
4
投票

您很可能可以忽略编译错误(这是您在第一个块中报告的内容)。这些变量可能仅在加载适当的包时使用。

关于

cmdproxy.exe
错误,看起来您正在 Windows 中运行。那是对的吗? 该可执行文件应与您的 Emacs 可执行文件位于同一目录中。如果不是,那么您应该重新安装 Emacs。如果位于该目录中,请检查变量
exec-path
的值(通过键入
C-h v exec-path RET
)以确保包含 Emacs 可执行文件的目录位于该
exec-path
中。

我在普通 Windows 中从 Emacs 运行子进程时遇到了问题(因为没有安装我常用的可执行文件,例如

diff
)。所以我建议安装 Cygwin 并从 Cygwin shell 运行 Emacs。最值得注意的是,因为
M-x clojure-install
需要安装
git
(如果您尚未安装)。

© www.soinside.com 2019 - 2024. All rights reserved.