summaryrefslogtreecommitdiffstats
path: root/generic/tclLoad.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2012-03-08 09:01:11 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2012-03-08 09:01:11 (GMT)
commit6540c1e7abc493b3684a2b1312717329494b96b1 (patch)
treed7b16f89e6ba2e4f47876aff16fbbf8ae0c19786 /generic/tclLoad.c
parente3a722221577f7aaeaa942bb59bbe67306b61229 (diff)
parent4b85ca90cba7edb9a10caead17ffa8d407e1e2b3 (diff)
downloadtcl-6540c1e7abc493b3684a2b1312717329494b96b1.zip
tcl-6540c1e7abc493b3684a2b1312717329494b96b1.tar.gz
tcl-6540c1e7abc493b3684a2b1312717329494b96b1.tar.bz2
merge from trunk
Diffstat (limited to 'generic/tclLoad.c')
-rw-r--r--generic/tclLoad.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/generic/tclLoad.c b/generic/tclLoad.c
index 820707e..202e66a 100644
--- a/generic/tclLoad.c
+++ b/generic/tclLoad.c
@@ -305,6 +305,12 @@ Tcl_LoadObjCmd(
&& (pkgGuess[2] == 'b')) {
pkgGuess += 3;
}
+#ifdef __CYGWIN__
+ if ((pkgGuess[0] == 'c') && (pkgGuess[1] == 'y')
+ && (pkgGuess[2] == 'g')) {
+ pkgGuess += 3;
+ }
+#endif /* __CYGWIN__ */
for (p = pkgGuess; *p != 0; p += offset) {
offset = Tcl_UtfToUniChar(p, &ch);
if ((ch > 0x100)