[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.229 and 1.230

version 1.229, 2015/04/02 23:48:20 version 1.230, 2015/04/16 20:22:27
Line 350  print_mdoc(MDOC_ARGS)
Line 350  print_mdoc(MDOC_ARGS)
         } else          } else
                 t = print_otag(h, TAG_DIV, 1, &tag);                  t = print_otag(h, TAG_DIV, 1, &tag);
   
           mdoc_root_pre(meta, n, h);
         print_mdoc_nodelist(meta, n, h);          print_mdoc_nodelist(meta, n, h);
           mdoc_root_post(meta, n, h);
         print_tagq(h, t);          print_tagq(h, t);
 }  }
   
Line 391  print_mdoc_node(MDOC_ARGS)
Line 393  print_mdoc_node(MDOC_ARGS)
         n->flags &= ~MDOC_ENDED;          n->flags &= ~MDOC_ENDED;
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_ROOT:  
                 child = mdoc_root_pre(meta, n, h);  
                 break;  
         case ROFFT_TEXT:          case ROFFT_TEXT:
                 /* No tables in this mode... */                  /* No tables in this mode... */
                 assert(NULL == h->tblt);                  assert(NULL == h->tblt);
Line 451  print_mdoc_node(MDOC_ARGS)
Line 450  print_mdoc_node(MDOC_ARGS)
         print_stagq(h, t);          print_stagq(h, t);
   
         switch (n->type) {          switch (n->type) {
         case ROFFT_ROOT:  
                 mdoc_root_post(meta, n, h);  
                 break;  
         case ROFFT_EQN:          case ROFFT_EQN:
                 break;                  break;
         default:          default:

Legend:
Removed from v.1.229  
changed lines
  Added in v.1.230

CVSweb