=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.203 retrieving revision 1.204 diff -u -p -r1.203 -r1.204 --- mandoc/term.c 2012/05/31 22:29:13 1.203 +++ mandoc/term.c 2012/07/10 15:35:41 1.204 @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.203 2012/05/31 22:29:13 schwarze Exp $ */ +/* $Id: term.c,v 1.204 2012/07/10 15:35:41 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2011, 2012 Ingo Schwarze @@ -265,16 +265,11 @@ term_flushln(struct termp *p) p->overstep = (int)(vis - maxvis + (*p->width)(p, ' ')); /* - * Behave exactly the same way as groff: * If we have overstepped the margin, temporarily move * it to the right and flag the rest of the line to be * shorter. - * If we landed right at the margin, be happy. - * If we are one step before the margin, temporarily - * move it one step LEFT and flag the rest of the line - * to be longer. */ - if (p->overstep < -1) + if (p->overstep < 0) p->overstep = 0; return;