bug-indent
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Misaligned declarations on block scope


From: Christoph Schmidt
Subject: Misaligned declarations on block scope
Date: Tue, 23 Mar 2010 13:36:39 +0100

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.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]