]> git.cameronkatri.com Git - mandoc.git/blobdiff - term.c
Make SYNOPSIS `Nm' use a TABLE in -T[x]html mode. Also fix `Nd' using
[mandoc.git] / term.c
diff --git a/term.c b/term.c
index 37fc180d1cd30d71f17ae0921ff8d2cebe69c5e5..d402968ef56550799e3aefae1f9cdea47a9db823 100644 (file)
--- 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 <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;