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

Diff for /mandoc/tbl.c between version 1.13 and 1.14

version 1.13, 2011/01/01 15:45:18 version 1.14, 2011/01/01 16:10:40
Line 116  tbl_free(struct tbl *p)
Line 116  tbl_free(struct tbl *p)
 }  }
   
 void  void
 tbl_restart(struct tbl *tbl)  tbl_restart(int line, int pos, struct tbl *tbl)
 {  {
   
         tbl->part = TBL_PART_LAYOUT;          tbl->part = TBL_PART_LAYOUT;
           tbl->line = line;
           tbl->pos = pos;
   
           if (NULL == tbl->first_span || NULL == tbl->first_span->first)
                   TBL_MSG(tbl, MANDOCERR_TBLNODATA, tbl->line, tbl->pos);
 }  }
   
 const struct tbl_span *  const struct tbl_span *
Line 137  tbl_end(struct tbl *tbl)
Line 142  tbl_end(struct tbl *tbl)
         if (NULL == tbl->first_span || NULL == tbl->first_span->first)          if (NULL == tbl->first_span || NULL == tbl->first_span->first)
                 TBL_MSG(tbl, MANDOCERR_TBLNODATA, tbl->line, tbl->pos);                  TBL_MSG(tbl, MANDOCERR_TBLNODATA, tbl->line, tbl->pos);
 }  }
   

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14

CVSweb