]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdocterm.c
-inset and -diag lists now supported.
[mandoc.git] / mdocterm.c
index 00a1308503a2185b5f7909785afc8686788beb56..9149a6d96d8a35a75f8eb60d5c1dd29321df292b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: mdocterm.c,v 1.27 2009/03/03 21:07:01 kristaps Exp $ */
+/* $Id: mdocterm.c,v 1.28 2009/03/03 22:17:19 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -227,9 +227,6 @@ main(int argc, char *argv[])
  *    offset value.  This is useful when doing columnar lists where the
  *    prior column has right-padded.
  *
- *  - TERMP_LITERAL: don't break apart words.  Note that a long literal
- *    word will violate the right margin.
- *
  *  - TERMP_NOBREAK: this is the most important and is used when making
  *    columns.  In short: don't print a newline and instead pad to the
  *    right margin.  Used in conjunction with TERMP_NOLPAD.
@@ -363,10 +360,10 @@ flushln(struct termp *p)
         * pad to the right margin and stay off.
         */
 
-       if (p->flags & TERMP_NOBREAK) {
+       if (p->flags & TERMP_NOBREAK) 
                for ( ; vis < maxvis; vis++)
                        putchar(' ');
-       else
+       else
                putchar('\n');
 
        p->col = 0;