Re: Grmpf

2003-10-22 Thread Lars Gullik Bjønnes
Martin Vermeer <[EMAIL PROTECTED]> writes: | On Wed, Oct 22, 2003 at 09:02:49AM +0200, Andre Poenitz spake thusly: > | ... > >> > + if (i + 1 < last) <-- needed to prevent trailing empty row >> >creation after wide inset >> > + break;

Re: Grmpf

2003-10-22 Thread Martin Vermeer
On Wed, Oct 22, 2003 at 09:02:49AM +0200, Andre Poenitz spake thusly: ... > > + if (i + 1 < last) <-- needed to prevent trailing empty row > > creation after wide inset > > + break; <-- OK. > > > > This works perfectly on

Re: Grmpf

2003-10-22 Thread Andre Poenitz
point = i - 1; > > + break; > > + } > > + } > > > > No good. > > > > Andre' > > Grmpf indeed. > > Your patch is close but I think you need the following: > > if (point

Re: Grmpf

2003-10-21 Thread Martin Vermeer
== last || chunkwidth >= width - left) { > + if (pos < i) { > + point = i - 1; > + break; > + } > + } > > No good. >

Grmpf

2003-10-21 Thread Andre Poenitz
- if (point == last || chunkwidth >= width - left) - point = (pos < i) ? i - 1 : i; - break; + if (point == last || chunkwidth >= width - left) { + if (pos < i) { +