On Sat, Jul 05, 2003, Chris Hawks wrote:
>     if ( areallycondition....................................................
>          && shortcondition ) {
>         DoThis()
>     }

Nope, the '&&' should be at the end of the first line to make it 
obvious that the statement on the first line is only part of a
statement (instead of only looking like you might have forgotten 
a parenthesis.) What I could consider, though, is to put the '{'
on a line of its own, i.e.

    if ( areallycondition............................. &&
         shortcondition )
    {
        DoThis();
    }

/Mike

_______________________________________________
plucker-dev mailing list
[EMAIL PROTECTED]
http://lists.rubberchicken.org/mailman/listinfo/plucker-dev

Reply via email to