[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.127 and 1.128

version 1.127, 2017/01/19 15:27:34 version 1.128, 2017/01/20 23:51:00
Line 517  man_OP_pre(MAN_ARGS)
Line 517  man_OP_pre(MAN_ARGS)
   
         print_text(h, "[");          print_text(h, "[");
         h->flags |= HTML_NOSPACE;          h->flags |= HTML_NOSPACE;
         tt = print_otag(h, TAG_SPAN, "c", "opt");          tt = print_otag(h, TAG_SPAN, "c", "Op");
   
         if (NULL != (n = n->child)) {          if (NULL != (n = n->child)) {
                 print_otag(h, TAG_B, "");                  print_otag(h, TAG_B, "");
Line 603  man_UR_pre(MAN_ARGS)
Line 603  man_UR_pre(MAN_ARGS)
         assert(n->type == ROFFT_HEAD);          assert(n->type == ROFFT_HEAD);
         if (n->child != NULL) {          if (n->child != NULL) {
                 assert(n->child->type == ROFFT_TEXT);                  assert(n->child->type == ROFFT_TEXT);
                 print_otag(h, TAG_A, "ch", "link-ext", n->child->string);                  print_otag(h, TAG_A, "ch", "Lk", n->child->string);
         }          }
   
         assert(n->next->type == ROFFT_BODY);          assert(n->next->type == ROFFT_BODY);

Legend:
Removed from v.1.127  
changed lines
  Added in v.1.128

CVSweb