On Tuesday 01 July 2008 13:21:03 Geoffrey Broadwell wrote:

> 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.

Isn't it interesting how the very small practices of beginning continued lines 
with operators and aligning similar things vertically combine so nicely?

-- c

Reply via email to