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

Diff for /mandoc/tbl.c between version 1.33 and 1.34

version 1.33, 2015/01/26 00:57:22 version 1.34, 2015/01/27 05:21:45
Line 173  void
Line 173  void
 tbl_end(struct tbl_node **tblp)  tbl_end(struct tbl_node **tblp)
 {  {
         struct tbl_node *tbl;          struct tbl_node *tbl;
           struct tbl_span *sp;
   
         tbl = *tblp;          tbl = *tblp;
         *tblp = NULL;          *tblp = NULL;
   
         if (NULL == tbl->first_span || NULL == tbl->first_span->first)          sp = tbl->first_span;
           while (sp != NULL && sp->first == NULL)
                   sp = sp->next;
           if (sp == NULL)
                 mandoc_msg(MANDOCERR_TBLNODATA, tbl->parse,                  mandoc_msg(MANDOCERR_TBLNODATA, tbl->parse,
                     tbl->line, tbl->pos, NULL);                      tbl->line, tbl->pos, NULL);
   

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34

CVSweb