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

Diff for /mandoc/tree.c between version 1.87 and 1.88

version 1.87, 2020/03/13 15:32:29 version 1.88, 2020/04/07 22:56:02
Line 207  print_mdoc(const struct roff_node *n, int indent)
Line 207  print_mdoc(const struct roff_node *n, int indent)
                         if (n->string != NULL)                          if (n->string != NULL)
                                 printf("=%s", n->string);                                  printf("=%s", n->string);
                 }                  }
                 if (n->flags & NODE_HREF)                  if (n->flags & NODE_HREF) {
                         printf(" HREF");                          printf(" HREF");
                           if (n->string != NULL && (n->flags & NODE_ID) == 0)
                                   printf("=%s", n->string);
                   }
                 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.87  
changed lines
  Added in v.1.88

CVSweb