Is it with JDE mode? I put it in test.java and opened it.
When I hit TAB at the beginning of the second line, 'and'
moved to the place below 'some'. It looks like it is
working for me.
You're right. Matt's last patch must have fixed it. SO here's another thing
I see which I think worked in 21.1 (but I can't be sure).
public class test
{
public int foo(int i /* hello */, // a comment
short s, test t)
{
foo(1 /* oops */, 2, this)
break;
/* a comment
foo(1,2,this);
*/
}
}
If you fontify the buffer the third foo shows up in comment color. If you
comment out the /* and */ it is not shown in correct colors - even if you go
to the line and hit tab. THe only way you can get it colored correctly is to
modify the line somehow (e.g. M-<space> <tab>) or to refontify the whole
buffer.
Of course this may just be a font-lock bug.
andy