[BACK]Return to tree.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/tree.c between version 1.85 and 1.86

version 1.85, 2020/01/11 16:03:42 version 1.86, 2020/02/27 21:43:45
Line 199  print_mdoc(const struct roff_node *n, int indent)
Line 199  print_mdoc(const struct roff_node *n, int indent)
                         putchar(')');                          putchar(')');
                 if (n->flags & NODE_EOS)                  if (n->flags & NODE_EOS)
                         putchar('.');                          putchar('.');
                   if (n->flags & NODE_ID) {
                           printf(" ID");
                           if (n->string != NULL)
                                   printf("=%s", n->string);
                   }
                   if (n->flags & NODE_HREF)
                           printf(" HREF");
                 if (n->flags & NODE_BROKEN)                  if (n->flags & NODE_BROKEN)
                         printf(" BROKEN");                          printf(" BROKEN");
                 if (n->flags & NODE_NOFILL)                  if (n->flags & NODE_NOFILL)

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.86

CVSweb