[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.11 and 1.12

version 1.11, 2011/01/07 13:03:48 version 1.12, 2011/01/07 14:59:52
Line 90  mod:
Line 90  mod:
                 break;                  break;
         }          }
   
           /* Throw away parenthesised expression. */
   
           if ('(' == p[*pos]) {
                   (*pos)++;
                   while (p[*pos] && ')' != p[*pos])
                           (*pos)++;
                   if (')' == p[*pos]) {
                           (*pos)++;
                           goto mod;
                   }
                   TBL_MSG(tbl, MANDOCERR_TBLLAYOUT, ln, *pos);
                   return(0);
           }
   
         /* Parse numerical spacing from modifier string. */          /* Parse numerical spacing from modifier string. */
   
         if (isdigit((unsigned char)p[*pos])) {          if (isdigit((unsigned char)p[*pos])) {

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

CVSweb