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

Diff for /mandoc/tbl_layout.c between version 1.14 and 1.16

version 1.14, 2011/01/10 14:40:30 version 1.16, 2011/01/11 14:12:01
Line 122  mod:
Line 122  mod:
                 }                  }
   
                 *pos += i;                  *pos += i;
                 cp->spacing = atoi(buf);                  cp->spacing = (size_t)atoi(buf);
   
                 goto mod;                  goto mod;
                 /* NOTREACHED */                  /* NOTREACHED */
Line 218  cell(struct tbl_node *tbl, struct tbl_row *rp, 
Line 218  cell(struct tbl_node *tbl, struct tbl_row *rp, 
                         default:                          default:
                                 break;                                  break;
                         }                          }
           }
   
           /*
            * If a vertical spanner is found, we may not be in the first
            * row.
            */
   
           if (TBL_CELL_DOWN == c && rp == tbl->first_row) {
                   TBL_MSG(tbl, MANDOCERR_TBLLAYOUT, ln, *pos);
                   return(0);
         }          }
   
         (*pos)++;          (*pos)++;

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

CVSweb