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

Diff for /src/usr.bin/indent/lexi.c between version 1.10 and 1.11

version 1.10, 2003/09/26 22:23:28 version 1.11, 2004/07/20 03:50:26
Line 120 
Line 120 
   
   
 int  int
 lexi()  lexi(void)
 {  {
     int         unary_delim;    /* this is set to 1 if the current token      int         unary_delim;    /* this is set to 1 if the current token
                                  * forces a following operator to be unary */                                   * forces a following operator to be unary */
Line 562 
Line 562 
  * Add the given keyword to the keyword table, using val as the keyword type   * Add the given keyword to the keyword table, using val as the keyword type
  */   */
 void  void
 addkey(key, val)  addkey(char *key, int val)
     char       *key;  
     int         val;  
 {  {
     struct templ *p;      struct templ *p;
     int i = 0;      int i = 0;

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