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

version 1.59, 2011/01/04 01:23:18 version 1.61, 2011/01/04 10:31:15
Line 202  print_man_node(MAN_ARGS)
Line 202  print_man_node(MAN_ARGS)
                         print_otag(h, TAG_BR, 0, NULL);                          print_otag(h, TAG_BR, 0, NULL);
                 return;                  return;
         case (MAN_TBL):          case (MAN_TBL):
                 return;                  print_tbl(h, n->span);
                   break;
         default:          default:
                 /*                  /*
                  * Close out scope of font prior to opening a macro                   * Close out scope of font prior to opening a macro
Line 226  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.59  
changed lines
  Added in v.1.61

CVSweb