diff options
| author | Pratyush Yadav <me@yadavpratyush.com> | 2020-03-19 21:29:19 +0530 |
|---|---|---|
| committer | Pratyush Yadav <me@yadavpratyush.com> | 2020-03-19 21:29:19 +0530 |
| commit | a5728022e07c53e5ac91db0960870518e243b7c1 (patch) | |
| tree | 088699d08cb99dcfd2030d137659f412c6ae40cb /git-gui.sh | |
| parent | a4a2f646421e772acc78b8118c821645d92ba57d (diff) | |
| parent | 3891a84ccdad249c426c3e036d4fb086c388b4ce (diff) | |
| download | git-a5728022e07c53e5ac91db0960870518e243b7c1.tar.xz | |
Merge branch 'py/remove-tcloo'
Reduce the Tcl version requirement to 8.5 to allow git-gui to run on
MacOS distributions like High Sierra. While here, fix a potential
variable name collision.
* py/remove-tcloo:
git-gui: create a new namespace for chord script evaluation
git-gui: reduce Tcl version requirement from 8.6 to 8.5
Diffstat (limited to 'git-gui.sh')
| -rwxr-xr-x | git-gui.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-gui.sh b/git-gui.sh index d939844942..4610e4ca72 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -30,8 +30,8 @@ along with this program; if not, see <http://www.gnu.org/licenses/>.}] ## ## Tcl/Tk sanity check -if {[catch {package require Tcl 8.6} err] - || [catch {package require Tk 8.6} err] +if {[catch {package require Tcl 8.5} err] + || [catch {package require Tk 8.5} err] } { catch {wm withdraw .} tk_messageBox \ |
