Re: [CEDET-devel] ede-linux doesn't work with master emacs repo
Brought to you by:
zappo
|
From: Eric M. L. <er...@si...> - 2010-09-25 22:37:55
|
Hi Aneesh,
You example works with the CEDET from the CEDET repository. There have
been no changes in that area since CEDET 1.0.
A good place to start is with M-x semantic-analyze-debug-assist RET
which will point at the problem area. Perhaps something has been
translated into Emacs incorrectly.
Eric
On 09/25/2010 05:03 PM, Aneesh Kumar K. V wrote:
> On Sat, 25 Sep 2010 15:19:54 -0400, Chong Yidong<cy...@st...> wrote:
>> ane...@li... (Aneesh Kumar K.V) writes:
>>
>>> After the sync with CEDET 1.0, ede-linux support seems to be
>>> broken. Visting a linux kernel directory gives the error
>>>
>>> ede-directory-project-p: Cannot open load file: ede-linux
>>
>> Should be fixed now, thanks for the report.
>
> I also found that the completion is broken with the update. With simple C
> prg like the below, I am not able to complete the member variables of
> struct a
>
> struct a {
> int k;
> char b;
> } t;
>
> main()
> {
> int done;
> int c;
> char k;
> c = done;
> c = t.
> }
|