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

Diff for /src/usr.bin/mandoc/mdoc_html.c between version 1.193 and 1.194

version 1.193, 2018/12/15 23:33:20 version 1.194, 2018/12/22 19:48:46
Line 532 
Line 532 
                 for (sn = n; sn != NULL; sn = sn->next) {                  for (sn = n; sn != NULL; sn = sn->next) {
                         tsec = print_otag(h, TAG_LI, "");                          tsec = print_otag(h, TAG_LI, "");
                         id = html_make_id(sn->head, 0);                          id = html_make_id(sn->head, 0);
                         print_otag(h, TAG_A, "hR", id);                          tsub = print_otag(h, TAG_A, "hR", id);
                         free(id);                          free(id);
                         print_mdoc_nodelist(meta, sn->head->child, h);                          print_mdoc_nodelist(meta, sn->head->child, h);
                           print_tagq(h, tsub);
                         tsub = NULL;                          tsub = NULL;
                         for (subn = sn->body->child; subn != NULL;                          for (subn = sn->body->child; subn != NULL;
                             subn = subn->next) {                              subn = subn->next) {

Legend:
Removed from v.1.193  
changed lines
  Added in v.1.194