[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.134 and 1.135

version 1.134, 2017/03/15 11:29:53 version 1.135, 2017/03/17 12:10:16
Line 440  man_SH_pre(MAN_ARGS)
Line 440  man_SH_pre(MAN_ARGS)
         if (n->type == ROFFT_HEAD) {          if (n->type == ROFFT_HEAD) {
                 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);
                 print_otag(h, TAG_A, "chR", "selflink", id);                  if (id != NULL)
                           print_otag(h, TAG_A, "chR", "selflink", id);
                 free(id);                  free(id);
         }          }
         return 1;          return 1;
Line 509  man_SS_pre(MAN_ARGS)
Line 510  man_SS_pre(MAN_ARGS)
         if (n->type == ROFFT_HEAD) {          if (n->type == ROFFT_HEAD) {
                 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);
                 print_otag(h, TAG_A, "chR", "selflink", id);                  if (id != NULL)
                           print_otag(h, TAG_A, "chR", "selflink", id);
                 free(id);                  free(id);
         }          }
         return 1;          return 1;

Legend:
Removed from v.1.134  
changed lines
  Added in v.1.135

CVSweb