Re: annoying blue background

2004-09-22 Thread Jeff Greif
It's something like semantic-decoration-mode which you can turn off from one of the semantic customization buffers (not the top-level one). (Sorry about lack of details, but I don't have this version of jde on my machine at home). Jeff - Original Message - From: Steven [EMAIL PROTECTED]

javac mistakes filename for flag

2004-09-22 Thread Allen Hsu
When I did C-c C-v C-v, javac seems to think the source filename as a flag. Is there a setting to correct this? I'm using JDE2.3.4beta5, emacs21.2.1, JDK1.4.2_05. Thanks. Allen cd c:/Allen/DesignPatterns/FactoryMethod/ c:/j2sdk1.4.2_05/bin/javac.exe -classpath

Re: javac mistakes filename for flag

2004-09-22 Thread Suraj Acharya
javac usually says this when it can't find the .java file passed to it. Can you check if MyDocument.java exists in c:/Allen/DesignPatterns/FactoryMethod/ ? Suraj On Tue, 21 Sep 2004 23:22:44 -0700 (PDT), Allen Hsu [EMAIL PROTECTED] wrote: When I did C-c C-v C-v, javac seems to think the source

javac mistakes filename for flag

2004-09-22 Thread Paul Kinnucan
Allen Hsu writes: When I did C-c C-v C-v, javac seems to think the source filename as a flag. Is there a setting to correct this? Allen, Please submit a full bug report (see the JDEE web site and the Submit Problem Report item on the JDEE's help menu) when asking for tech support. The

Re: [jde] Color coding only on first java file

2004-09-22 Thread Raul Acevedo
On Tue, 2004-09-21 at 23:06 -0400, Paul Kinnucan wrote: There seems to be a bug in semantic that is cured by putting the following in your .emacs file: (setq semantic-load-turn-useful-things-on t) See Jeff Greif's post to the JDEE mailing list earlier today. Is it necessary to restart

Re: javac mistakes filename for flag

2004-09-22 Thread Suraj Acharya
The problem is probabaly the capital J in the your file extension for MyDocument.Java You must be using windows, filenames are case insensite there and emacs will allow you to open a file called MyDocument.Java even if you originally created a MyDocument.java. Javac, however, doesn't seem to treat

Usages plugin problem with deleted classes

2004-09-22 Thread Raul Acevedo
I'm using the usages plugin, and it's awesome. One problem: a class that got deleted (actually renamed to a different package) a few days ago is confusing it when I lookup subclasses; it somehow finds a reference to the old class, but since it's not compiled and the source is not around, it

Comint exited abnormally with code 129

2004-09-22 Thread Roland Roberts
I searched the list for this and only found one occurrence which claimed that updating their system made the problem go away. Well, it doesn't for me. I'm a newbie to JDE and Java, too. Running a program works, but trying to debug it gives this error. Here's the content of the debugger window:

Re: javac mistakes filename for flag

2004-09-22 Thread Allen Hsu
Suraj, The culprit is indeed capital J in file extension. After I changed the case, the problem goes away. Thank you very much for the help. Allen --- Suraj Acharya [EMAIL PROTECTED] wrote: The problem is probabaly the capital J in the your file extension for MyDocument.Java You must be

Re: [jde] Color coding only on first java file

2004-09-22 Thread Paul Kinnucan
Raul Acevedo writes: On Tue, 2004-09-21 at 23:06 -0400, Paul Kinnucan wrote: There seems to be a bug in semantic that is cured by putting the following in your .emacs file: (setq semantic-load-turn-useful-things-on t) See Jeff Greif's post to the JDEE mailing list