Hi *,

when running indent over a construct like

void f(void)
{
  int i;
  {
    int j;
    // make something
  }
}

it aligns all variable declarations:

void f(void)
{
  int i;
  {
  int j;
    // make something
  }
}

Is there a way to disable this? Or is it just my personal incapacity
to find the correct option?

Thanks a lot in advance!

--
Please do not send e-mails to this account. I won't read them.


_______________________________________________
bug-indent mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-indent

Reply via email to