[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.150 and 1.151

version 1.150, 2017/03/13 20:22:11 version 1.151, 2017/03/14 01:34:57
Line 626 
Line 626 
                 len = html_strlen(meta->name);                  len = html_strlen(meta->name);
   
         t = print_otag(h, TAG_COLGROUP, "");          t = print_otag(h, TAG_COLGROUP, "");
         print_otag(h, TAG_COL, "shw", len);          /* Increase width to make even bold text fit. */
           print_otag(h, TAG_COL, "shw", len + 2);
         print_otag(h, TAG_COL, "");          print_otag(h, TAG_COL, "");
         print_tagq(h, t);          print_tagq(h, t);
         print_otag(h, TAG_TR, "");          print_otag(h, TAG_TR, "");

Legend:
Removed from v.1.150  
changed lines
  Added in v.1.151