[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.26

version 1.24, 2011/03/20 16:02:05 version 1.26, 2013/05/31 21:37:17
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;
   
         /*          /*
Line 187  newspan(struct tbl_node *tbl, int line, struct tbl_row
Line 185  newspan(struct tbl_node *tbl, int line, struct tbl_row
   
         dp = mandoc_calloc(1, sizeof(struct tbl_span));          dp = mandoc_calloc(1, sizeof(struct tbl_span));
         dp->line = line;          dp->line = line;
         dp->tbl = &tbl->opts;          dp->opts = &tbl->opts;
         dp->layout = rp;          dp->layout = rp;
         dp->head = tbl->first_head;          dp->head = tbl->first_head;
   

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

CVSweb