summaryrefslogtreecommitdiffstats
path: root/unix/tclAppInit.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2025-08-12 14:43:59 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2025-08-12 14:43:59 (GMT)
commit4ba51a6b66b5aada2c017339d3860a37083ecc45 (patch)
tree91a2d68c46cadd4863ff29405391e6015de0cce3 /unix/tclAppInit.c
parenta0b91a68d71d5a7fd347862b5b9a912b262b8c52 (diff)
parentbb662c4f7abec1e0edf052104705a0ecf4dc2c21 (diff)
downloadtcl-4ba51a6b66b5aada2c017339d3860a37083ecc45.zip
tcl-4ba51a6b66b5aada2c017339d3860a37083ecc45.tar.gz
tcl-4ba51a6b66b5aada2c017339d3860a37083ecc45.tar.bz2
Merge 8.6
Diffstat (limited to 'unix/tclAppInit.c')
-rw-r--r--unix/tclAppInit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclAppInit.c b/unix/tclAppInit.c
index 8d967e8..2a20dc1 100644
--- a/unix/tclAppInit.c
+++ b/unix/tclAppInit.c
@@ -92,8 +92,8 @@ main(
#ifdef TCL_LOCAL_MAIN_HOOK
TCL_LOCAL_MAIN_HOOK(&argc, &argv);
-#elif (TCL_MAJOR_VERSION > 8 || TCL_MINOR_VERSION > 6) && (!defined(_WIN32) || defined(UNICODE))
- /* New in Tcl 8.7. This doesn't work on Windows without UNICODE */
+#elif TCL_MAJOR_VERSION > 8 && (!defined(_WIN32) || defined(UNICODE))
+ /* New in Tcl 9.0. This doesn't work on Windows without UNICODE */
TclZipfs_AppHook(&argc, &argv);
#endif