HI,
In message "Re: IRHG - Slow Child Working?"
on Thu, 14 Feb 2008 15:18:31 +0900, Charles Thornton <ceo / hawthorne-press.com> writes:
| Isn't this a NOP. It will BREAK no matter what the condition!
|789 case T_DATA:
| 790 if (obj-> As.Data.Dmark) (*obj-> As.Data.Dmark) (DATA_PTR (obj));
| 791 break;
Does the following rewrite make it clearer?
if (obj->as.data.dmark) {
(*obj->as.data.dmark) (DATA_PTR (obj))
};
matz.