Hi,
> I'm inclined to agree with this one, but others will side with Kazu.
> Was this change something indent did?
Actually, I just found out the following.
indent with no option generates:
struct foo
{
int n;
}
bar;
indent -brs generates:
struct foo {
int n;
} bar;
Originally I was not using -brs. That was the problem.
Kazu Hirata