[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.52 and 1.53

version 1.52, 2010/12/08 10:58:22 version 1.53, 2010/12/15 17:19:41
Line 141  static void
Line 141  static void
 print_man(MAN_ARGS)  print_man(MAN_ARGS)
 {  {
         struct tag      *t;          struct tag      *t;
         struct htmlpair  tag;  
   
         t = print_otag(h, TAG_HEAD, 0, NULL);          t = print_otag(h, TAG_HEAD, 0, NULL);
   
         print_man_head(m, n, mh, h);          print_man_head(m, n, mh, h);
         print_tagq(h, t);          print_tagq(h, t);
         t = print_otag(h, TAG_BODY, 0, NULL);  
   
         tag.key = ATTR_CLASS;          t = print_otag(h, TAG_BODY, 0, NULL);
         tag.val = "body";  
         print_otag(h, TAG_DIV, 1, &tag);  
   
         print_man_nodelist(m, n, mh, h);          print_man_nodelist(m, n, mh, h);
   
         print_tagq(h, t);          print_tagq(h, t);
 }  }
   

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53

CVSweb