aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Levedahl <mlevedahl@gmail.com>2025-03-20 14:16:07 -0400
committerMark Levedahl <mlevedahl@gmail.com>2025-07-16 23:02:38 -0400
commit4e605b7bc06f3a19ca5c80088d16b2827a855c84 (patch)
tree07351656f32730c9bf85c40e3890c259b4e4fce3
parentac222bc02df9aef49d4a6ee839762c2902961a21 (diff)
downloadgit-4e605b7bc06f3a19ca5c80088d16b2827a855c84.tar.xz
gitk: allow Tcl/Tk 9.0+
Tcl/Tk 9.0 has been released, and has shipped in Fedora 42. Prior patches in this sequence have addressed known incompatibilities, so gitk is now operating with Tcl9. So, let's allow Tcl9. Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
-rwxr-xr-xgitk2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitk b/gitk
index 09c11041e8..3752a2c1dc 100755
--- a/gitk
+++ b/gitk
@@ -7,7 +7,7 @@ exec wish "$0" -- "$@"
# and distributed under the terms of the GNU General Public Licence,
# either version 2, or (at your option) any later version.
-if {[catch {package require Tcl 8.6-8.8} err]} {
+if {[catch {package require Tcl 8.6-} err]} {
catch {wm withdraw .}
tk_messageBox \
-icon error \