On Tue, 2008-07-01 at 11:46 -0700, chromatic wrote: 
>       if (next <   interp->code->base.data
>       ||  next >= (interp->code->base.data + interp->code->base.size))

Oh, that's just pretty.  I've long been in the habit of laying out
whitespace for multiple if tests like this:

    if (   next <   interp->code->base.data
        || next >= (interp->code->base.data + interp->code->base.size))

But I like your version better -- mine always seemed a little scattered
on the left.

Thank you!


-'f


Reply via email to