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

Diff for /src/usr.bin/mandoc/tbl.c between version 1.2 and 1.3

version 1.2, 2010/10/15 21:33:47 version 1.3, 2010/10/15 22:07:12
Line 90 
Line 90 
   
   
 int  int
 tbl_close(struct tbl *tbl, const char *f, int ln)  tbl_close(struct termp *p, struct tbl *tbl, const char *f, int ln)
 {  {
   
         if (TBL_PART_DATA != tbl->part)          if (TBL_PART_DATA != tbl->part)
Line 98 
Line 98 
         if ( ! tbl_data_close(tbl, f, ln))          if ( ! tbl_data_close(tbl, f, ln))
                 return(0);                  return(0);
 #if 1  #if 1
         return(tbl_calc_term(tbl));          return(tbl_calc_term(p, tbl));
 #else  #else
         return(tbl_calc_tree(tbl));          return(tbl_calc_tree(tbl));
 #endif  #endif

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3