* Father Chrysostomos <sprout@cpan.org> [2013-07-31T00:29:49] > I would prefer that we not have too many rules. Being able to format code > free-style allows for more clarity when things can up vertically: > > if (CvROOT(cv)) slab = OpSLAB(CvROOT(cv)); > else if (CvSTART(cv)) slab = (OPSLAB *)CvSTART(cv); Note that the policy that Karl mentioned was that braces were required when the statement was not on the same line as the if. What you show above is not violating the policy as it would if you split it across four lines: if / stmt / else / stmt -- rjbsThread Previous | Thread Next