[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.60 and 1.61

version 1.60, 2011/01/04 10:29:41 version 1.61, 2011/01/04 10:31:15
Line 227  print_man_node(MAN_ARGS)
Line 227  print_man_node(MAN_ARGS)
   
         bufinit(h);          bufinit(h);
   
         if (MAN_ROOT == n->type)          switch (n->type) {
           case (MAN_ROOT):
                 man_root_post(m, n, mh, h);                  man_root_post(m, n, mh, h);
         else if (mans[n->tok].post)                  break;
                 (*mans[n->tok].post)(m, n, mh, h);          case (MAN_TBL):
                   break;
           default:
                   if (mans[n->tok].post)
                           (*mans[n->tok].post)(m, n, mh, h);
                   break;
           }
 }  }
   
   

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61

CVSweb