On Wednesday 2008-04-09 15:14, Andy Whitcroft wrote:
Instead of
if (foo) {
if (baz) {
++x;
printk("Oh so long line makes my coding style go wary... nonsensical sentence\n");
}
}
I'd keep the indent and allow elongated lines:
if (foo) {
if (baz) {
++x;
printk("Oh so long line makes my coding style go wary... nonsensical sentence\n");
}
}
Or perhaps you just pointed out we need a smarter grep program! :)
--