Tk Source Code

Check-in [7518016c]
Login

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

Overview
Comment:[bug 3505358 ] invalid color name "#f75df642f527"
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-4-branch
Files: files | file ages | folders
SHA1: 7518016c7d9343367ab69466c2bf6611bb7b72ba
User & Date: jan.nijtmans 2012-03-15 20:10:37
Context
2012-03-15
20:45
workaround for _strtoi64 determination on win64 (autoconf-2.13 issue) check-in: 11cf61f5 user: jan.nijtmans tags: core-8-4-branch
20:12
[bug 3505358 ] invalid color name "#f75df642f527" check-in: 5ce95311 user: jan.nijtmans tags: core-8-5-branch
20:10
[bug 3505358 ] invalid color name "#f75df642f527" check-in: 7518016c user: jan.nijtmans tags: core-8-4-branch
2012-03-14
23:08
workaround attempt for win64 problem????? check-in: 038983f7 user: jan.nijtmans tags: core-8-4-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tkColor.c.

855
856
857
858
859
860
861


862
863
864
865
866
	buf[7] = *(--spec);
	buf[6] = *(--spec);
	buf[5] = buf[8] = *(--spec);
	buf[3] = *(--spec);
	buf[2] = *(--spec);
	buf[1] = buf[4] = *(--spec);
	spec = buf;


	}
    }
    return XParseColor(display, map, spec, colorPtr);
}
#endif /* __WIN32__ */







>
>





855
856
857
858
859
860
861
862
863
864
865
866
867
868
	buf[7] = *(--spec);
	buf[6] = *(--spec);
	buf[5] = buf[8] = *(--spec);
	buf[3] = *(--spec);
	buf[2] = *(--spec);
	buf[1] = buf[4] = *(--spec);
	spec = buf;
	} else {
	    spec -= 10;
	}
    }
    return XParseColor(display, map, spec, colorPtr);
}
#endif /* __WIN32__ */