Re: condingstyle, was Re: utrace comments

From: David Howells
Date: Wed May 02 2007 - 05:33:53 EST


Eric W. Biederman <ebiederm@xxxxxxxxxxxx> wrote:

> Not lining up with the code following the if statement is also
> a plus. Because it clearly delineates the conditions from the code.

But the condition doesn't line up with the code:

if (veryverylengthycondition1 &&
smallcond2 &&
(conditionnumber3a ||
condition3b)) {
this_is_some_code();
this_is_some_more_code();
}

Personally, for complicated conditions like this, I prefer:

if (veryverylengthycondition1 &&
smallcond2 &&
(conditionnumber3a ||
condition3b)
) {
this_is_some_code();
this_is_some_more_code();
}

But that seems to offend Andrew for some reason (or was it Christoph? or
both?).

David
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/