On Friday 19 January 2007 03:42, Dr. Johannes Zellner wrote:
> Hello,
>
> there are assertions as
>
> assert(ux < term->xmax && uy < term->ymax);
>
> in emf.trm which fail sometimes.
>
> I belive, that these assertions should be changed to include
> equality like this:
>
> assert(ux <= term->xmax && uy <= term->ymax);
>
> agreed?
Can we also change them to int_error() rather than assert?.
It's very annoying to have the program die just because of a
something trivial like an arrowhead protruding across the edge
of the canvas.
|