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

Diff for /mandoc/tbl.c between version 1.25 and 1.26

version 1.25, 2011/04/04 23:04:38 version 1.26, 2011/07/25 15:37:00
Line 154  tbl_span(struct tbl_node *tbl)
Line 154  tbl_span(struct tbl_node *tbl)
 }  }
   
 void  void
 tbl_end(struct tbl_node *tbl)  tbl_end(struct tbl_node **tblp)
 {  {
           struct tbl_node *tbl;
   
           tbl = *tblp;
           *tblp = NULL;
   
         if (NULL == tbl->first_span || NULL == tbl->first_span->first)          if (NULL == tbl->first_span || NULL == tbl->first_span->first)
                 mandoc_msg(MANDOCERR_TBLNODATA, tbl->parse,                  mandoc_msg(MANDOCERR_TBLNODATA, tbl->parse,

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

CVSweb