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

Diff for /mandoc/roff.c between version 1.44 and 1.45

version 1.44, 2008/12/06 13:18:44 version 1.45, 2008/12/06 16:50:18
Line 660  roffspecial(struct rofftree *tree, int tok, 
Line 660  roffspecial(struct rofftree *tree, int tok, 
                         return(0);                          return(0);
                 }                  }
                 break;                  break;
   
           case (ROFF_Ud):
                   /* FALLTHROUGH */
           case (ROFF_Bt):
                   if (0 != sz) {
                           roff_err(tree, start, "`%s' expects no args",
                                           toknames[tok]);
                           return(0);
                   }
                   break;
         default:          default:
                 break;                  break;
         }          }
Line 1170  roff_layout(ROFFCALL_ARGS) 
Line 1180  roff_layout(ROFFCALL_ARGS) 
 static int  static int
 roff_ordered(ROFFCALL_ARGS)  roff_ordered(ROFFCALL_ARGS)
 {  {
         /* FIXME: the tail-switch statement is in two different places:  
          * consolidate. */  
         int              i, first, c, argcp[ROFF_MAXLINEARG];          int              i, first, c, argcp[ROFF_MAXLINEARG];
         char            *ordp[ROFF_MAXLINEARG], *p,          char            *ordp[ROFF_MAXLINEARG], *p,
                         *argvp[ROFF_MAXLINEARG];                          *argvp[ROFF_MAXLINEARG];

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.45

CVSweb