Menu

#2 After a right brace, a comment on the next line is moved up

open
nobody
None
5
2004-01-12
2004-01-12
No

After a right brace, a comment on the next line is
moved up to the right
brace line.

E.g.

if (tok == null)
{
tok =
seq.appendTokenColumn(settings.align_terms,
AlignableColumnNodeType.TERM);
}
/** if the simpleTerm is multiline, we need to
parse it down so that
the first "token" is assigned to
* the token column, and the rest are simply
added as unaligned
tokens. The multiline processor works
* on single lines also, so just use it for
everything here.
*/

becomes

if (tok == null)
{
tok =
seq.appendTokenColumn(settings.align_terms,
AlignableColumnNodeType.TERM);
} /** if the simpleTerm is multiline, we need
to parse it down so
that the first "token" is assigned to
* the token column, and the rest are simply
added as unaligned
tokens. The multiline processor works
* on single lines also, so just use it for
everything here.
*/

Discussion


Log in to post a comment.