aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Levedahl <mlevedahl@gmail.com>2025-05-16 22:30:37 -0400
committerMark Levedahl <mlevedahl@gmail.com>2025-07-31 13:51:03 -0400
commitc20408c6b755a6b0fe869586cbba0bd6329978b5 (patch)
tree086b2e1dd19eb24635873e54b26078f3cb5bd468
parentcc41d374fa9e130cf9b89da5cbcf7694257b7df1 (diff)
downloadgit-c20408c6b755a6b0fe869586cbba0bd6329978b5.tar.gz
git-gui: Allow Tcl 9.0
TclTk 9.0 is now shipping, and git-gui is now patched to support use of this newer version. Adjust required versions to allow Tcl/Tk >= 8.6, including 9.x. Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
-rwxr-xr-xgit-gui.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-gui.sh b/git-gui.sh
index 1ebf1e288d..44e801c5bf 100755
--- a/git-gui.sh
+++ b/git-gui.sh
@@ -30,7 +30,7 @@ along with this program; if not, see <https://www.gnu.org/licenses/>.}]
##
## Tcl/Tk sanity check
-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 \