Changeset 1442 for trunk/src/kmk/function.c
- Timestamp:
- Mar 30, 2008, 8:45:10 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/function.c
r1440 r1442 3775 3775 o = variable_expand_for_file_2 (o, cmds->command_lines[i], file); 3776 3776 3777 /* blank, if so, drop it. */3777 /* Skip it if it has a '%' prefix or is blank. */ 3778 3778 p = o; 3779 while (isblank ((unsigned char)*o)) 3779 while (isblank ((unsigned char)*o) 3780 || strchr("@-+", *o)) 3780 3781 o++; 3781 if ( o != '\0')3782 if (*o != '\0' && *o != '%') 3782 3783 o = strchr (o, '\0'); 3783 3784 else
Note:
See TracChangeset
for help on using the changeset viewer.