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

Diff for /src/usr.bin/mandoc/tbl_html.c between version 1.5 and 1.6

version 1.5, 2011/09/18 15:54:48 version 1.6, 2012/05/26 20:03:34
Line 119 
Line 119 
                         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.5  
changed lines
  Added in v.1.6