3

我下载并编译了CEDET的开发分支,并根据网页上的指南加载它,但是当我启动Emacs时,我得到了

错误:EIEIO 版本 1.3 已加载;在初始化文件的开头加载 CEDET 以避免这种情况。

这实际上是我的 .emacs 在 ~/.emacs 中的第一行:

(load-file "~/.emacs.d/cedet/common/cedet.el")
(semantic-load-enable-excessive-code-helpers)

(global-ede-mode t)

(require 'semantic-ia)
(require 'semantic-gcc)
(require 'semanticdb)

我真的看不出有什么问题。我也是 Emacs 新手 :P 感谢您的帮助。干杯

4

1 回答 1

3

IMO 错误是自我描述的。将您的代码段放在开头.emacs

实际加载开发版本略有不同。这是我的 .emacs 文件的相关部分。(相应地更改 cedet 的路径)

(unless (featurep 'cedet)
  (when (file-directory-p "~/.emacs.d/el-get/cedet")
    (progn
      (add-to-list 'load-path  "~/.emacs.d/el-get/cedet")
      (load-file "~/.emacs.d/el-get/cedet/cedet-devel-load.el"))))

;;; ede
(setq semantic-default-submodes
      '(;; cache(?)
        global-semanticdb-minor-mode

        global-semantic-highlight-edits-mode
        global-semantic-idle-local-symbol-highlight-mode
        ;; global-cedet-m3-minor-mode

        ;; code helpers
        global-semantic-idle-scheduler-mode
        global-semantic-idle-summary-mode
        global-semantic-idle-completions-mode

        ;; eye candy
        global-semantic-decoration-mode
        global-semantic-highlight-func-mode
        global-semantic-highlight-edits-mode
        global-semantic-stickyfunc-mode

        ;; debugging semantic itself
        ;;global-semantic-show-parser-state-mode 1   ;; show the parsing state in the mode line
        ;;global-semantic-show-unmatched-syntax-mode 1
        ))

(global-ede-mode 1)
于 2012-07-02T12:03:20.823 回答