diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-09-26 20:09:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-09-26 20:09:49 (GMT) |
commit | de5344f487368c2796e1ff6f1ff5ff1ed00c42d5 (patch) | |
tree | 7c47fa5340cae988484a61e9bf7a797e9939e729 /win/tclAppInit.c | |
parent | f36f29ad958f5cac6d85fddd3b88374c56d85b70 (diff) | |
parent | ea1a9cc17e2b6b28dcc21738e4eb6a7cf11c570b (diff) | |
download | tcl-de5344f487368c2796e1ff6f1ff5ff1ed00c42d5.zip tcl-de5344f487368c2796e1ff6f1ff5ff1ed00c42d5.tar.gz tcl-de5344f487368c2796e1ff6f1ff5ff1ed00c42d5.tar.bz2 |
Merge trunk
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r-- | win/tclAppInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index 4c230cd..d82e8ac 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -126,7 +126,8 @@ _tmain( #ifdef TCL_LOCAL_MAIN_HOOK TCL_LOCAL_MAIN_HOOK(&argc, &argv); -#else +#elif !defined(_WIN32) && !defined(UNICODE) + /* This doesn't work on Windows without UNICODE */ TclZipfs_AppHook(&argc, &argv); #endif |