Re: PATCH: Refactor script-column.cc for improved reading and fewerlines

2009-12-04 Thread Reinhold Kainhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Freitag, 4. Dezember 2009 18:24:01 schrieb Trevor Daniels: > David Kastrup wrote Friday, December 04, 2009 4:24 PM > > > I've unwrapped a bit of code of the form > > > > for (a;b;c) { > > if (condition) > >short something > > else { > >La

Re: PATCH: Refactor script-column.cc for improved reading and fewerlines

2009-12-04 Thread David Kastrup
"Trevor Daniels" writes: > David Kastrup wrote Friday, December 04, 2009 4:24 PM >> >> I've unwrapped a bit of code of the form >> >> for (a;b;c) { >> if (condition) >>short something >> else { >>Large something >> } >> z >> } >> >> into >> >> for (a;b;z,c) { >> if (condition) { >>

Re: PATCH: Refactor script-column.cc for improved reading and fewerlines

2009-12-04 Thread Trevor Daniels
David Kastrup wrote Friday, December 04, 2009 4:24 PM I've unwrapped a bit of code of the form for (a;b;c) { if (condition) short something else { Large something } z } into for (a;b;z,c) { if (condition) { short something continue; } Large something } which helps a bit k