[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.143 and 1.144

version 1.143, 2011/01/12 10:43:22 version 1.144, 2011/01/13 14:30:13
Line 420  print_mdoc_node(MDOC_ARGS)
Line 420  print_mdoc_node(MDOC_ARGS)
                 child = mdoc_root_pre(m, n, h);                  child = mdoc_root_pre(m, n, h);
                 break;                  break;
         case (MDOC_TEXT):          case (MDOC_TEXT):
                   /* No tables in this mode... */
                   assert(NULL == h->tblt);
                 if (' ' == *n->string && MDOC_LINE & n->flags)                  if (' ' == *n->string && MDOC_LINE & n->flags)
                         print_otag(h, TAG_BR, 0, NULL);                          print_otag(h, TAG_BR, 0, NULL);
                 print_text(h, n->string);                  print_text(h, n->string);
                 return;                  return;
         case (MDOC_TBL):          case (MDOC_TBL):
                   /*
                    * This will take care of initialising all of the table
                    * state data for the first table, then tearing it down
                    * for the last one.
                    */
                 print_tbl(h, n->span);                  print_tbl(h, n->span);
                 break;                  return;
         default:          default:
                   /*
                    * Close out the current table, if it's open, and unset
                    * the "meta" table state.  This will be reopened on the
                    * next table element.
                    */
                   if (h->tblt) {
                           print_tblclose(h);
                           t = h->tags.head;
                   }
   
                   assert(NULL == h->tblt);
                 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);
                 break;                  break;
Line 454  print_mdoc_node(MDOC_ARGS)
Line 472  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.143  
changed lines
  Added in v.1.144

CVSweb