[BACK]Return to tbl_data.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/tbl_data.c between version 1.26 and 1.27

version 1.26, 2015/01/30 17:31:20 version 1.27, 2015/04/19 20:34:56
Line 130 
Line 130 
                 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.26  
changed lines
  Added in v.1.27