Status: New
Owner: [email protected]
Labels: Type-Defect Priority-Medium
New issue 36 by [email protected]: C indenting: function headers
spanning multiple lines are indented incorrectly
http://code.google.com/p/vim/issues/detail?id=36
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-
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php