为 GNU Emacs 23.2.1 配置 CEDET
我最近为 OS X 10.6 构建并安装了 Emacs 23.2.1,它显然预装了 CEDET 1.0pre7,但我旧的 CEDET 配置失败(例如 (semantic-load-excessive-code-helpers) 甚至
(semantic-load-code-helpers)
未定义),即使将以下内容添加到我的 .emacs 中:
(require 'cedet)
(semantic-mode 1)
(require 'semantic)
我缺少什么?
I recently built and installed Emacs 23.2.1 for OS X 10.6, which apparently comes with CEDET 1.0pre7 pre-installed, but my old CEDET configuration fails (for instance (semantic-load-excessive-code-helpers)
or even (semantic-load-code-helpers)
are undefined) even after adding the following to my .emacs:
(require 'cedet)
(semantic-mode 1)
(require 'semantic)
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Emacs 集成的 CEDET 配置不同。这就是我的旧配置的调整方式,但未经附加 CEDET 测试:
Emacs-integrated CEDET configuration is different. This is how adapted my old configuration, untested with the add-on CEDET though: