diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-10-23 13:26:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-10-23 13:26:49 (GMT) |
commit | c952daff893fa20dc2773d7cf5aeaa4687ba6f45 (patch) | |
tree | 57790d74ea1366a49b6610433f1e94ecfed03847 /win/nmakehlp.c | |
parent | 35c5d43f01e2ff6e8cc9f7585adceb7bcbbbbcf9 (diff) | |
download | tk-c952daff893fa20dc2773d7cf5aeaa4687ba6f45.zip tk-c952daff893fa20dc2773d7cf5aeaa4687ba6f45.tar.gz tk-c952daff893fa20dc2773d7cf5aeaa4687ba6f45.tar.bz2 |
sync nmakehlp.c with Tcl version
Diffstat (limited to 'win/nmakehlp.c')
-rw-r--r-- | win/nmakehlp.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/win/nmakehlp.c b/win/nmakehlp.c index d0edcf0..b1a1517 100644 --- a/win/nmakehlp.c +++ b/win/nmakehlp.c @@ -498,9 +498,10 @@ GetVersionFromFile( p = strstr(szBuffer, match); if (p != NULL) { /* - * Skip to first digit. + * Skip to first digit after the match. */ + p += strlen(match); while (*p && !isdigit(*p)) { ++p; } @@ -630,11 +631,11 @@ SubstituteFile( } } #endif - + /* * Run the substitutions over each line of the input */ - + while (fgets(szBuffer, cbBuffer, fp) != NULL) { list_item_t *p = NULL; for (p = substPtr; p != NULL; p = p->nextPtr) { @@ -654,7 +655,7 @@ SubstituteFile( } printf(szBuffer); } - + list_free(&substPtr); } fclose(fp); |