Git fork

clang-format: exclude control macros from SpaceBeforeParens

The formatter currently suggests adding a space between a control macro
and parentheses. In the Git project, this is not typically expected. Set
`SpaceBeforeParens` to `ControlStatementsExceptControlMacros`
accordingly.

Helped-by: Karthik Nayak <karthik.188@gmail.com>
Signed-off-by: Justin Tobler <jltobler@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Justin Tobler and committed by
Junio C Hamano
3721541d c44beea4

+1 -1
+1 -1
.clang-format
··· 149 149 # f(); 150 150 # } 151 151 # } 152 - SpaceBeforeParens: ControlStatements 152 + SpaceBeforeParens: ControlStatementsExceptControlMacros 153 153 154 154 # Don't insert spaces inside empty '()' 155 155 SpaceInEmptyParentheses: false