[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.2 and 1.3

version 1.2, 2011/01/09 14:30:48 version 1.3, 2011/01/16 01:11:50
Line 104 
Line 104 
                         PAIR_STYLE_INIT(&tag, h);                          PAIR_STYLE_INIT(&tag, h);
                         tt = print_otag(h, TAG_TD, 1, &tag);                          tt = print_otag(h, TAG_TD, 1, &tag);
   
                         if (dp && dp->string)                          if (dp) {
                                 print_text(h, dp->string);                                  switch (dp->layout->pos) {
                         if (dp)                                  case (TBL_CELL_DOWN):
                                           break;
                                   default:
                                           if (NULL == dp->string)
                                                   break;
                                           print_text(h, dp->string);
                                           break;
                                   }
                                 dp = dp->next;                                  dp = dp->next;
                           }
   
                         print_tagq(h, tt);                          print_tagq(h, tt);
                 }                  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3