[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.44 and 1.45

version 1.44, 2010/12/29 00:47:31 version 1.45, 2011/01/04 22:28:17
Line 239 
Line 239 
         {mdoc_sp_pre, NULL}, /* sp */          {mdoc_sp_pre, NULL}, /* sp */
         {mdoc__x_pre, mdoc__x_post}, /* %U */          {mdoc__x_pre, mdoc__x_post}, /* %U */
         {NULL, NULL}, /* Ta */          {NULL, NULL}, /* Ta */
         {NULL, NULL}, /* TS */  
         {NULL, NULL}, /* TE */  
 };  };
   
 static  const char * const lists[LIST_MAX] = {  static  const char * const lists[LIST_MAX] = {
Line 420 
Line 418 
         case (MDOC_TEXT):          case (MDOC_TEXT):
                 print_text(h, n->string);                  print_text(h, n->string);
                 return;                  return;
           case (MDOC_TBL):
                   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 447 
Line 448 
         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.44  
changed lines
  Added in v.1.45