* lisp/cedet/ede/cpp-root.el (ede-set-project-variables): Fix feature name.

Fixes: debbugs:6231
This commit is contained in:
Jonathan Marchand 2010-05-31 16:26:56 -04:00 committed by Stefan Monnier
parent 1ab8293c36
commit 9b937f3761
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-05-31 Jonathan Marchand <jonathlela@gmail.com>
* cedet/ede/cpp-root.el (ede-set-project-variables): Fix feature name
(bug#6231).
2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
* man.el (Man-completion-table): Let the user type "-k " (bug#6319).

View file

@ -467,7 +467,7 @@ This is for project include paths and spp source files."
"Set variables local to PROJECT in BUFFER.
Also set up the lexical preprocessor map."
(call-next-method)
(when (and (featurep 'semantic/c) (featurep 'semantic/lex-spp))
(when (and (featurep 'semantic/bovine/c) (featurep 'semantic/lex-spp))
(setq semantic-lex-spp-project-macro-symbol-obarray
(semantic-lex-make-spp-table (oref project spp-table)))
))