[BACK]Return to mdoc_html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/mdoc_html.c between version 1.104 and 1.105

version 1.104, 2015/04/02 23:47:43 version 1.105, 2015/04/16 20:21:08
Line 348 
Line 348 
         } 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 389 
Line 391 
         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 449 
Line 448 
         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.104  
changed lines
  Added in v.1.105