Fix uncrustify configuration

This changes required aligmnent of closing parenthesis of function call
if placed in new line.

Before:

int x = func(aaa, bbb, ccc,
    );

After:

int x = func(aaa, bbb, ccc,
);

The syntax above is not really used, but it also affects macros so may
be useful in some cases.
This commit is contained in:
Andrzej Kaczmarek
2023-02-03 16:10:04 +01:00
parent 26a70e2ac3
commit f32f28c9e3
+1 -1
View File
@@ -225,7 +225,7 @@ indent_paren_nl = false # false/true
# 0: Indent to body level # 0: Indent to body level
# 1: Align under the open paren # 1: Align under the open paren
# 2: Indent to the brace level # 2: Indent to the brace level
indent_paren_close = 0 # number indent_paren_close = 2 # number
# Controls the indent of a comma when inside a paren.If TRUE, aligns under the open paren # Controls the indent of a comma when inside a paren.If TRUE, aligns under the open paren
indent_comma_paren = false # false/true indent_comma_paren = false # false/true