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

Diff for /mandoc/man_html.c between version 1.147 and 1.148

version 1.147, 2018/04/13 16:28:07 version 1.148, 2018/04/24 00:36:53
Line 431  man_SH_pre(MAN_ARGS)
Line 431  man_SH_pre(MAN_ARGS)
                 id = html_make_id(n);                  id = html_make_id(n);
                 print_otag(h, TAG_H1, "cTi", "Sh", id);                  print_otag(h, TAG_H1, "cTi", "Sh", id);
                 if (id != NULL)                  if (id != NULL)
                         print_otag(h, TAG_A, "chR", "selflink", id);                          print_otag(h, TAG_A, "chR", "permalink", id);
                 free(id);                  free(id);
         }          }
         return 1;          return 1;
Line 501  man_SS_pre(MAN_ARGS)
Line 501  man_SS_pre(MAN_ARGS)
                 id = html_make_id(n);                  id = html_make_id(n);
                 print_otag(h, TAG_H2, "cTi", "Ss", id);                  print_otag(h, TAG_H2, "cTi", "Ss", id);
                 if (id != NULL)                  if (id != NULL)
                         print_otag(h, TAG_A, "chR", "selflink", id);                          print_otag(h, TAG_A, "chR", "permalink", id);
                 free(id);                  free(id);
         }          }
         return 1;          return 1;

Legend:
Removed from v.1.147  
changed lines
  Added in v.1.148

CVSweb