On 10/17/06, Andy Lester <[EMAIL PROTECTED]> wrote:

On Oct 17, 2006, at 3:33 PM, Kevin Tew wrote:

>    if (!info->thaw_result)  info->thaw_result = pmc;
>    else                               *info->thaw_ptr   = pmc;

No, definitely not.

if ( foo ) {
     bar();
}
else {
     bat();
}


 if (foo)
     bar();
 else
     bat();

is specced in the code formatting section of pdd07. specifically, "Do
not routinely put single statements in statement blocks" and
"parentheses should not have space immediately after the opening
parenthesis nor immediately before the closing parenthesis" apply
here.
~jerry

Reply via email to