在安装配置C/C++环境的时候
a. cedet最新版本为1.1beta,提示cedet-called-interactively-p的参数有问题
在cedet载入之前
add in .emacs configure file .
add in .emacs configure file .
(setq byte-compile-warnings nil)
b. ecb加载的时候显示错误信息,用下列语句屏蔽掉
(setq stack-trace-on-error nil)
c. ecb提示只兼容cedet版本 1.0.6pre ~ 1.0.9
在ecb最新版本中找到
修改ecb-upgrade.el文件,将ecb-check-requirements函数中的:(1 0 4 9)
,将最高版本信息改写一下,比如改为如下
修改ecb-upgrade.el文件,将ecb-check-requirements函数中的:(1 0 4 9)
,将最高版本信息改写一下,比如改为如下
(defconst ecb-cedet-required-version-max '(1 1 4 9)...