Cliff Woolley wrote:

eg:

    if (foo) {
        then();
    }

not
    if (foo)
        then();

fine with me



and if (foo && bar && baz && quux && crash && burn) { then(); }

not
    if (foo && bar && baz &&
        quux && crash && burn) {
        then();
    }

I'm quite happy that


[httpd-2.0] $ find . -name '*.c' | xargs grep '^[ \t]+{'

currently produces no output, and I'd prefer that it stay that way ;)

(searching apr and apr-util left as an exercise for the reader)



Reply via email to