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

Diff for /mandoc/mdoc_html.c between version 1.314 and 1.315

version 1.314, 2018/10/02 19:44:15 version 1.315, 2018/10/04 13:23:04
Line 541  mdoc_sh_pre(MDOC_ARGS)
Line 541  mdoc_sh_pre(MDOC_ARGS)
                             subn = subn->next) {                              subn = subn->next) {
                                 if (subn->tok != MDOC_Ss)                                  if (subn->tok != MDOC_Ss)
                                         continue;                                          continue;
                                   id = html_make_id(subn->head, 0);
                                   if (id == NULL)
                                           continue;
                                 if (tsub == NULL)                                  if (tsub == NULL)
                                         print_otag(h, TAG_UL,                                          print_otag(h, TAG_UL,
                                             "c", "Bl-compact");                                              "c", "Bl-compact");
                                 tsub = print_otag(h, TAG_LI, "");                                  tsub = print_otag(h, TAG_LI, "");
                                 id = html_make_id(subn->head, 0);  
                                 print_otag(h, TAG_A, "hR", id);                                  print_otag(h, TAG_A, "hR", id);
                                 free(id);                                  free(id);
                                 print_mdoc_nodelist(meta,                                  print_mdoc_nodelist(meta,

Legend:
Removed from v.1.314  
changed lines
  Added in v.1.315

CVSweb