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

Diff for /mandoc/tbl.c between version 1.30 and 1.31

version 1.30, 2014/08/10 23:54:41 version 1.31, 2015/01/14 22:44:55
Line 55  tbl_read(struct tbl_node *tbl, int ln, const char *p, 
Line 55  tbl_read(struct tbl_node *tbl, int ln, const char *p, 
   
         switch (tbl->part) {          switch (tbl->part) {
         case TBL_PART_OPTS:          case TBL_PART_OPTS:
                 return(tbl_option(tbl, ln, p) ? ROFF_IGN : ROFF_ERR);                  tbl_option(tbl, ln, p);
                   return(ROFF_IGN);
         case TBL_PART_LAYOUT:          case TBL_PART_LAYOUT:
                 return(tbl_layout(tbl, ln, p) ? ROFF_IGN : ROFF_ERR);                  tbl_layout(tbl, ln, p);
                   return(ROFF_IGN);
         case TBL_PART_CDATA:          case TBL_PART_CDATA:
                 return(tbl_cdata(tbl, ln, p) ? ROFF_TBL : ROFF_IGN);                  return(tbl_cdata(tbl, ln, p) ? ROFF_TBL : ROFF_IGN);
         default:          default:

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

CVSweb