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

Diff for /src/usr.bin/make/arch.c between version 1.55 and 1.56

version 1.55, 2006/01/20 23:10:19 version 1.56, 2007/03/20 03:50:39
Line 261 
Line 261 
          * a close paren).  */           * a close paren).  */
         bool doSubst = false; /* true if need to substitute in memberName */          bool doSubst = false; /* true if need to substitute in memberName */
   
         while (*cp != '\0' && *cp != ')' && isspace(*cp))          while (isspace(*cp))
             cp++;              cp++;
         memberName = cp;          memberName = cp;
         while (*cp != '\0' && *cp != ')' && !isspace(*cp)) {          while (*cp != '\0' && *cp != ')' && !isspace(*cp)) {
Line 383 
Line 383 
      * entrance to the loop, cp is guaranteed to point at a ')') */       * entrance to the loop, cp is guaranteed to point at a ')') */
     do {      do {
         cp++;          cp++;
     } while (*cp != '\0' && isspace(*cp));      } while (isspace(*cp));
   
     *linePtr = cp;      *linePtr = cp;
     return true;      return true;

Legend:
Removed from v.1.55  
changed lines
  Added in v.1.56