[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Using only my-own cedet
From: |
Andrea Crotti |
Subject: |
Re: Using only my-own cedet |
Date: |
Tue, 03 Aug 2010 20:09:02 +0200 |
User-agent: |
Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (darwin) |
suvayu ali <fatkasuvayu+linux@gmail.com> writes:
>
> Just load the appropriate .elc file. I think the major difference
> between the two version is how you set it up. The cedet integrated
> with emacs is turned on with various minor modes and the cedet from
> CVS is loaded with something like this,
>
> (load-file "~/.emacs.d/elisp/cedet/common/cedet.elc")
> (setq semantic-load-turn-useful-things-on t)
>
> Hope this helps.
Very good it works now!
I had to change to this
--8<---------------cut here---------------start------------->8---
(load (concat conf "cedet/common/cedet"))
(setq semantic-load-turn-everything-on t)
--8<---------------cut here---------------end--------------->8---
which if I understood correctly will load the elc if possible and el
otherwise.
Thanks finally I got it running fine :)