Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

C indenting: function headers spanning multiple lines are indented incorrectly #36

Closed
GoogleCodeExporter opened this issue Aug 18, 2015 · 2 comments

Comments

@GoogleCodeExporter
Copy link

In the following examples the arguments declarations and the function return 
types respectively are not indented while they should be:

#v+
/* comment */
    int
foo(a,
    b)
int a;
int b;
{
    return 0;
}

int
bar(
    int a,
    int b)
{
    return 0;
}
#v-

Original issue reported on code.google.com by lech.lor...@gmail.com on 13 Dec 2011 at 10:00

@GoogleCodeExporter
Copy link
Author

The attached patch fixes the described problem.

Original comment by lech.lor...@gmail.com on 13 Dec 2011 at 10:42

Attachments:

@GoogleCodeExporter
Copy link
Author

Patch included.

Original comment by brammool...@gmail.com on 14 Dec 2011 at 7:22

  • Changed state: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant