Hi all,

   JDE newbie here with an indentation issue.  I poked
around a little in the archives but couldn't find any
help.

   emacs 20.6.1 on NT / cygwin.
   JDE jde-2.2.3
   speedbar-0.13beta2
   semantic-1.2.1
   elib-1.0

No JDE customization ... installed out-of-the-box.

I have a snippet of code that I belive indents
incorrectly.  Here's the result of indent-region (hope
the mailer doesn't mess this up...) : 

public class BugRpt {
    public void buggedFunction() {
        Bg x =
            new Bg(new String[]{"x", "y" }, anArg, 
            anotherArg);
    }
}


I think that the line with "anotherArg" is indented
incorrectly.  The problem has something to do with the
"new String[]{...}" argument.  If I break the line
immediately after that argument, it does better:


public class BugRpt {
    public void buggedFunction() {
        Bg x =
            new Bg(new String[]{"x", "y" },
                   anArg, anotherArg);
    }
}


Any help?  Does this happen for you, Gentle Reader?

BTW, happens for me on linux with emacs 20.7.1 as
well.

Cheers,
--Bob


__________________________________________________
Do You Yahoo!?
Send instant messages & get email alerts with Yahoo! Messenger.
http://im.yahoo.com/

Reply via email to