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

Diff for /mandoc/tbl_data.c between version 1.24 and 1.25

version 1.24, 2011/03/20 16:02:05 version 1.25, 2012/05/27 17:54:54
Line 49  data(struct tbl_node *tbl, struct tbl_span *dp, 
Line 49  data(struct tbl_node *tbl, struct tbl_span *dp, 
                 cp = dp->layout->first;                  cp = dp->layout->first;
   
         /*          /*
          * Skip over spanners and vertical lines to data formats, since           * Skip over spanners, since
          * we want to match data with data layout cells in the header.           * we want to match data with data layout cells in the header.
          */           */
   
         while (cp && (TBL_CELL_VERT == cp->pos ||          while (cp && TBL_CELL_SPAN == cp->pos)
                                 TBL_CELL_DVERT == cp->pos ||  
                                 TBL_CELL_SPAN == cp->pos))  
                 cp = cp->next;                  cp = cp->next;
   
         /*          /*

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25

CVSweb