Skip to content

Commit 2d595a3

Browse files
committed
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>
1 parent fef6dc9 commit 2d595a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ exec wish "$0" -- "$@"
77
# and distributed under the terms of the GNU General Public Licence,
88
# either version 2, or (at your option) any later version.
99

10-
if {[catch {package require Tcl 8.6-8.8} err]} {
10+
if {[catch {package require Tcl 8.6-} err]} {
1111
catch {wm withdraw .}
1212
tk_messageBox \
1313
-icon error \

0 commit comments

Comments
 (0)