Re: ECB issues with CEDET in Emacs 23.1

Yann Hodique <[email protected]> Thu, 5 Nov 2009 10:17:39 +0100
Newsgroups gmane.emacs.code-browser
Message-ID <[email protected]>
On Thu, Nov 5, 2009 at 8:22 AM, Berndl, Klaus
<[email protected]> wrote:
> No, currently not - i'm too busy to work on ECB theses days...
> But i will contact Eric from cedet to get the informations what has changed
> and what is the best way, to prepare a tool like ECB to work with
> Emacs-included cedet as well as with self installed...
>
> maybe a solution in about two weeks

FYI, here is a patch with my modifications to make ECB 2.40 work with
my CVS version of Emacs.
No big deal actually, just some semantic reorg.

hope this helps

Yann.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july

_______________________________________________
Ecb-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ecb-list
ecb.patch (text/x-patch, 1.4 KB)
diff -u -w /home/yann/downloads/ecb-snap/ecb-analyse.el ./ecb-analyse.el
--- /home/yann/downloads/ecb-snap/ecb-analyse.el	2009-06-21 10:08:37.000000000 +0200
+++ ./ecb-analyse.el	2009-11-02 10:20:56.869845372 +0100
@@ -31,7 +31,7 @@

 ;;; Code:

-(require 'semantic-analyze)
+(require 'semantic/analyze)
 (require 'ecb-layout)
 (require 'ecb-common-browser)
 (require 'ecb-method-browser)
diff -u -w /home/yann/downloads/ecb-snap/ecb-cedet-wrapper.el ./ecb-cedet-wrapper.el
--- /home/yann/downloads/ecb-snap/ecb-cedet-wrapper.el	2009-06-21 10:08:37.000000000 +0200
+++ ./ecb-cedet-wrapper.el	2009-11-02 10:21:13.493941164 +0100
@@ -37,11 +37,11 @@


 (require 'semantic)
-(require 'semantic-ctxt)
-(require 'semantic-analyze)
-(require 'semanticdb)
-(require 'semanticdb-find)
-(require 'semanticdb-mode)
+(require 'semantic/ctxt)
+(require 'semantic/analyze)
+(require 'semantic/db)
+(require 'semantic/db-find)
+(require 'semantic/db-mode)

 (defconst ecb-semantic-2-loaded (string-match "^2" semantic-version))

diff -u -w /home/yann/downloads/ecb-snap/ecb-method-browser.el ./ecb-method-browser.el
--- /home/yann/downloads/ecb-snap/ecb-method-browser.el	2009-06-21 10:08:37.000000000 +0200
+++ ./ecb-method-browser.el	2009-11-05 10:12:14.634015994 +0100
@@ -41,8 +41,6 @@
 (require 'ecb-speedbar)

 (require 'ecb-cedet-wrapper)
-;; This loads the semantic-setups for the major-modes.
-(require 'semantic-load)

 ;; various loads
 (require 'assoc)