[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.39 and 1.40

version 1.39, 2015/01/30 17:32:16 version 1.40, 2015/04/19 20:35:20
Line 132  tbl_cdata(struct tbl_node *tbl, int ln, const char *p,
Line 132  tbl_cdata(struct tbl_node *tbl, int ln, const char *p,
                 if (p[pos] == tbl->opts.tab) {                  if (p[pos] == tbl->opts.tab) {
                         tbl->part = TBL_PART_DATA;                          tbl->part = TBL_PART_DATA;
                         pos++;                          pos++;
                         getdata(tbl, tbl->last_span, ln, p, &pos);                          while (p[pos] != '\0')
                                   getdata(tbl, tbl->last_span, ln, p, &pos);
                         return(1);                          return(1);
                 } else if (p[pos] == '\0') {                  } else if (p[pos] == '\0') {
                         tbl->part = TBL_PART_DATA;                          tbl->part = TBL_PART_DATA;

Legend:
Removed from v.1.39  
changed lines
  Added in v.1.40

CVSweb