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

Diff for /src/usr.bin/make/cond.c between version 1.32 and 1.33

version 1.32, 2007/01/04 18:01:32 version 1.33, 2007/03/20 03:50:39
Line 644 
Line 644 
                 /* A variable is empty when it just contains                  /* A variable is empty when it just contains
                  * spaces... 4/15/92, christos */                   * spaces... 4/15/92, christos */
                 char *p;                  char *p;
                 for (p = val; *p && isspace(*p); p++)                  for (p = val; isspace(*p); p++)
                     continue;                      continue;
                 t = *p == '\0' ? True : False;                  t = *p == '\0' ? True : False;
             }              }

Legend:
Removed from v.1.32  
changed lines
  Added in v.1.33