[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.5 and 1.6

version 1.5, 2011/01/06 12:31:39 version 1.6, 2011/01/11 14:12:01
Line 104  print_tbl(struct html *h, const struct tbl_span *sp)
Line 104  print_tbl(struct html *h, const struct tbl_span *sp)
                         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.5  
changed lines
  Added in v.1.6

CVSweb