summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2025-08-12 22:05:07 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2025-08-12 22:05:07 (GMT)
commit0056593b61883ae1292243f28cde2ba209125069 (patch)
tree8f31f82b1cc50d69856fda6b531bca68020a071d /unix
parent5178c9fe8388faae0f91417c1f769e8fd8dfa729 (diff)
parent71e90a29ad5a9b3c8f8e02c378010befcfcfaa3d (diff)
downloadtcl-0056593b61883ae1292243f28cde2ba209125069.zip
tcl-0056593b61883ae1292243f28cde2ba209125069.tar.gz
tcl-0056593b61883ae1292243f28cde2ba209125069.tar.bz2
Merge 9.0
Diffstat (limited to 'unix')
-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