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

Diff for /src/usr.bin/make/for.c between version 1.26 and 1.27

version 1.26, 2001/05/29 12:53:40 version 1.27, 2002/06/11 21:12:11
Line 146 
Line 146 
     For         *arg;      For         *arg;
     unsigned long n;      unsigned long n;
   
     /* If we are not in a for loop quickly determine if the statement is  
      * a for.  */  
     if (ptr[0] != 'f' || ptr[1] != 'o' || ptr[2] != 'r' ||  
         !isspace(ptr[3]))  
         return NULL;  
     ptr += 4;  
   
     while (*ptr && isspace(*ptr))      while (*ptr && isspace(*ptr))
         ptr++;          ptr++;
   

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27