GC seems to have difficulty with multi-line comments.
If I have the following code:
void f()
{
int i;
/* This is
* a multi-line
* comment; some
lines have a
leading star,
others don't
*/
for (i= 0; i < 10; i++)
printf("%d\n", i);
}
Then I would like GC to indent the multi-line comment
as a whole,
but I don't like GC to convert the comment itself. So I
would
like the following result:
void f()
{
int i;
/* This is
* a multi-line
* comment; some
lines have a
leading star,
others don't
*/
for (i= 0; i < 10; i++)
printf("%d\n", i);
}
Up till now, I only can achieve one of two things:
1. GC does not touch the comment, so the indentation
will not
be right.
2. GC does completely change the layout of the comment.
GC.uranium@neverbox.com