Amelio Vazquez-Reina
Amelio Vazquez-Reina

Reputation: 96304

Latest CEDET version can't load semantic packages

I am having problems loading some of the semantic packages that Alex Ott recommends in his well-known guide to CEDET when using the recent versions of CEDET.

My previous setting worked with no problem in Emacs 24.2.1, but I just upgraded to the latest version of CEDET in Bazaar, and Emacs run into problems when attempting to load the semantic-* packages. Following Alex's guide, I had the following commands in my .emacs file:

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

and Emacs now complains saying that it's unable to load those modules.

Same thing when running the command:

(global-semantic-tag-folding-mode 1)

Where did this functionality go in the latest versions of CEDET? Is there anything I am missing?

Upvotes: 3

Views: 375

Answers (1)

Alex Ott
Alex Ott

Reputation: 87174

After CEDET 1.1, it started to use the same activation scheme as CEDET in GNU Emacs, but article still talks about versions of CEDET before 1.1. I plan to update article when I'll find time. In the meantime, you can take my actual CEDET config - it uses new activation scheme.

Upvotes: 2

Related Questions