Chong Yidong writes: > The basic Semantic unit tests work, but if you come across any problem, > please let me know. In particular, some of the necessary autoloads > present in the original CEDET package may have been omitted when > transitioning to the new setup. Thank you for your work on merging CEDET; I can imagine it's no easy task. While playing around with the new branch, a few things popped up: * I am wondering how the basic CEDET setup should work now, since semantic-load.el is not in the branch. In cedet.el, I read I should use (setq semantic-load-turn-useful-things-on t) (require 'cedet) However, this does not enable the semanticdb database, which has still to be activated through (global-semanticdb-minor-mode 1) , otherwise not much will work. * There's a "(require 'semantic-analyze)" in scope.el. It's trivial, but I attached a patch anyway. :-) * I guess most of the search macros in semantic/find.el will need autoloads, most notably the ones under "Top level searches" and probably also the ones under "Deep searches". At the moment, I get an error that `semantic-find-tags-by-class' isn't defined. Regards, David