Eric W. Biederman <[email protected]> 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 [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- Re: condingstyle, was Re: utrace comments
- From: David Howells <[email protected]>
- Re: condingstyle, was Re: utrace comments
- From: [email protected] (Eric W. Biederman)
- Re: condingstyle, was Re: utrace comments
- References:
- Re: condingstyle, was Re: utrace comments
- From: [email protected] (Eric W. Biederman)
- Re: condingstyle, was Re: utrace comments
- From: "John Anthony Kazos Jr." <[email protected]>
- Re: utrace comments
- From: Roland McGrath <[email protected]>
- condingstyle, was Re: utrace comments
- From: Christoph Hellwig <[email protected]>
- Re: condingstyle, was Re: utrace comments
- From: Andrew Morton <[email protected]>
- Re: condingstyle, was Re: utrace comments
- From: "Satyam Sharma" <[email protected]>
- Re: condingstyle, was Re: utrace comments
- From: Geert Uytterhoeven <[email protected]>
- Re: condingstyle, was Re: utrace comments
- From: David Woodhouse <[email protected]>
- Re: condingstyle, was Re: utrace comments
- From: David Howells <[email protected]>
- Re: condingstyle, was Re: utrace comments
- Prev by Date: Re: [patches] [PATCH] [21/22] x86_64: Extend bzImage protocol for relocatable bzImage
- Next by Date: Re: [PATCH] Re: More than 2Gb problem (dvb related) ?
- Previous by thread: Re: condingstyle, was Re: utrace comments
- Next by thread: Re: condingstyle, was Re: utrace comments
- Index(es):