[BACK]Return to tbl_layout.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/tbl_layout.c between version 1.9 and 1.10

version 1.9, 2011/05/29 21:22:18 version 1.10, 2011/09/18 15:54:48
Line 169 
Line 169 
                 goto mod;                  goto mod;
         case ('f'):          case ('f'):
                 break;                  break;
           case ('r'):
                   /* FALLTHROUGH */
         case ('b'):          case ('b'):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case ('i'):          case ('i'):
Line 181 
Line 183 
         }          }
   
         switch (tolower((unsigned char)p[(*pos)++])) {          switch (tolower((unsigned char)p[(*pos)++])) {
           case ('3'):
                   /* FALLTHROUGH */
         case ('b'):          case ('b'):
                 cp->flags |= TBL_CELL_BOLD;                  cp->flags |= TBL_CELL_BOLD;
                 goto mod;                  goto mod;
           case ('2'):
                   /* FALLTHROUGH */
         case ('i'):          case ('i'):
                 cp->flags |= TBL_CELL_ITALIC;                  cp->flags |= TBL_CELL_ITALIC;
                   goto mod;
           case ('1'):
                   /* FALLTHROUGH */
           case ('r'):
                 goto mod;                  goto mod;
         default:          default:
                 break;                  break;

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10