[BACK]Return to tree.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/tree.c between version 1.54 and 1.55

version 1.54, 2020/03/13 00:31:05 version 1.55, 2020/04/07 22:45:37
Line 205 
Line 205 
                         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.54  
changed lines
  Added in v.1.55