[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.99 and 1.100

version 1.99, 2014/09/27 09:05:57 version 1.100, 2014/09/27 09:13:39
Line 331  man_root_pre(MAN_ARGS)
Line 331  man_root_pre(MAN_ARGS)
         print_stagq(h, tt);          print_stagq(h, tt);
   
         PAIR_CLASS_INIT(&tag[0], "head-rtitle");          PAIR_CLASS_INIT(&tag[0], "head-rtitle");
         PAIR_INIT(&tag[1], ATTR_ALIGN, "right");          print_otag(h, TAG_TD, 1, tag);
         print_otag(h, TAG_TD, 2, tag);  
         print_text(h, title);          print_text(h, title);
         print_tagq(h, t);          print_tagq(h, t);
         free(title);          free(title);
Line 360  man_root_post(MAN_ARGS)
Line 359  man_root_post(MAN_ARGS)
         print_stagq(h, tt);          print_stagq(h, tt);
   
         PAIR_CLASS_INIT(&tag[0], "foot-os");          PAIR_CLASS_INIT(&tag[0], "foot-os");
         PAIR_INIT(&tag[1], ATTR_ALIGN, "right");          print_otag(h, TAG_TD, 1, tag);
         print_otag(h, TAG_TD, 2, tag);  
   
         if (man->source)          if (man->source)
                 print_text(h, man->source);                  print_text(h, man->source);

Legend:
Removed from v.1.99  
changed lines
  Added in v.1.100

CVSweb