Tcl Extension Architecture (TEA) Sample Extension

Check-in [abacf662e3]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:sync with latest version from Tcl 8.6
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: abacf662e3b7ae3d774abea38c92063408d2d698
User & Date: jan.nijtmans 2013-03-01 14:10:11.216
Original Comment: cync with latest version from Tcl 8.6
Context
2013-06-04
14:46
Use nmakehlp.exe to eliminate the need for pkg.vc check-in: 09df4bb141 user: jan.nijtmans tags: trunk
2013-03-01
14:10
sync with latest version from Tcl 8.6 check-in: abacf662e3 user: jan.nijtmans tags: trunk
2012-08-17
10:35
nmakehlp: Add "-V<num>" option, in order to be able to detect partial version numbers check-in: 8a099dbceb user: jan.nijtmans tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to win/nmakehlp.c.
494
495
496
497
498
499
500
501
502
503

504
505
506
507
508
509
510

	while (fgets(szBuffer, cbBuffer, fp) != NULL) {
	    LPSTR p, q;

	    p = strstr(szBuffer, match);
	    if (p != NULL) {
		/*
		 * Skip to first digit.
		 */


		while (*p && !isdigit(*p)) {
		    ++p;
		}

		/*
		 * Find ending whitespace.
		 */







|


>







494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511

	while (fgets(szBuffer, cbBuffer, fp) != NULL) {
	    LPSTR p, q;

	    p = strstr(szBuffer, match);
	    if (p != NULL) {
		/*
		 * Skip to first digit after the match.
		 */

		p += strlen(match);
		while (*p && !isdigit(*p)) {
		    ++p;
		}

		/*
		 * Find ending whitespace.
		 */