[BACK]Return to mdoc_html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mdoc_html.c between version 1.140 and 1.141

version 1.140, 2011/01/01 12:18:37 version 1.141, 2011/01/04 10:29:41
Line 423  print_mdoc_node(MDOC_ARGS)
Line 423  print_mdoc_node(MDOC_ARGS)
                 print_text(h, n->string);                  print_text(h, n->string);
                 return;                  return;
         case (MDOC_TBL):          case (MDOC_TBL):
                 return;                  print_tbl(h, n->span);
                   break;
         default:          default:
                 if (mdocs[n->tok].pre && ENDBODY_NOT == n->end)                  if (mdocs[n->tok].pre && ENDBODY_NOT == n->end)
                         child = (*mdocs[n->tok].pre)(m, n, h);                          child = (*mdocs[n->tok].pre)(m, n, h);
Line 451  print_mdoc_node(MDOC_ARGS)
Line 452  print_mdoc_node(MDOC_ARGS)
         switch (n->type) {          switch (n->type) {
         case (MDOC_ROOT):          case (MDOC_ROOT):
                 mdoc_root_post(m, n, h);                  mdoc_root_post(m, n, h);
                   break;
           case (MDOC_TBL):
                 break;                  break;
         default:          default:
                 if (mdocs[n->tok].post && ENDBODY_NOT == n->end)                  if (mdocs[n->tok].post && ENDBODY_NOT == n->end)

Legend:
Removed from v.1.140  
changed lines
  Added in v.1.141

CVSweb