X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/ad2f2c1969faaff6ebc6213362b383c8c51bef76..e475285cd277f9da6cc63e7cdf31e74385a3ccc1:/term.c diff --git a/term.c b/term.c index 37fc180d..d402968e 100644 --- a/term.c +++ b/term.c @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.174 2010/10/02 15:15:55 schwarze Exp $ */ +/* $Id: term.c,v 1.175 2010/12/06 13:25:25 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * Copyright (c) 2010 Ingo Schwarze @@ -146,7 +146,7 @@ term_flushln(struct termp *p) * an indentation, but can be, for tagged lists or columns, a * small set of values. */ - assert (p->rmargin > p->offset); + assert (p->rmargin >= p->offset); dv = p->rmargin - p->offset; maxvis = (int)dv > p->overstep ? dv - (size_t)p->overstep : 0; dv = p->maxrmargin - p->offset;