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

Diff for /mandoc/tbl_html.c between version 1.9 and 1.10

version 1.9, 2011/09/18 14:14:15 version 1.10, 2012/05/27 17:54:54
Line 119  print_tbl(struct html *h, const struct tbl_span *sp)
Line 119  print_tbl(struct html *h, const struct tbl_span *sp)
                         print_stagq(h, tt);                          print_stagq(h, tt);
                         print_otag(h, TAG_TD, 0, NULL);                          print_otag(h, TAG_TD, 0, NULL);
   
                         switch (hp->pos) {                          if (NULL == dp)
                         case (TBL_HEAD_VERT):  
                                 /* FALLTHROUGH */  
                         case (TBL_HEAD_DVERT):  
                                 continue;  
                         case (TBL_HEAD_DATA):  
                                 if (NULL == dp)  
                                         break;  
                                 if (TBL_CELL_DOWN != dp->layout->pos)  
                                         if (dp->string)  
                                                 print_text(h, dp->string);  
                                 dp = dp->next;  
                                 break;                                  break;
                         }                          if (TBL_CELL_DOWN != dp->layout->pos)
                                   if (dp->string)
                                           print_text(h, dp->string);
                           dp = dp->next;
                 }                  }
                 break;                  break;
         }          }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

CVSweb