Tk Source Code

Check-in [5ce95311]
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-5-branch
Files: files | file ages | folders
SHA1: 5ce95311061424e565e88ac292d85de332ea4269
User & Date: jan.nijtmans 2012-03-15 20:12:46
Context
2012-03-15
20:46
merge-mark check-in: cb63753f user: jan.nijtmans tags: core-8-5-branch
20:13
[bug 3505358 ] invalid color name "#f75df642f527" check-in: c243cf82 user: jan.nijtmans tags: trunk
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-07
14:22
Minor: code style improvements. check-in: 11aacfe5 user: dkf tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tkColor.c.

844
845
846
847
848
849
850


851
852
853
854
855
856
857
	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__ */
/*
 * Local Variables:







>
>







844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
	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__ */
/*
 * Local Variables: