On 04/04/2013 09:17 AM, Markus Klein wrote:
> I’d suggest to change this to the more readable version:
>
> If (
> Condition1
> && condition 2
> && condition 3
> )
> }{
+1
bracket handling, please:
if (
cond1
&& cond2
) {
body
}
-> ") {" closing round and opening curly bracket on one line, in same
column as "if"
Regards
Christian