From: Pat Thoyts Date: Mon, 2 Aug 2010 11:13:05 +0000 (+0100) Subject: git-gui: mc cannot be used before msgcat has been loaded X-Git-Tag: gitgui-0.13.0~9 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/9cb268c426ccb2bb836418caad669476b5dd1933?ds=inline;hp=--cc git-gui: mc cannot be used before msgcat has been loaded If someone attempts to use an older version that Tk 8.4 the error was masked by the lack of a mc command. Signed-off-by: Pat Thoyts --- 9cb268c426ccb2bb836418caad669476b5dd1933 diff --git a/git-gui.sh b/git-gui.sh index 88b3f8a086..c3f6736132 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -38,7 +38,7 @@ if {[catch {package require Tcl 8.4} err] tk_messageBox \ -icon error \ -type ok \ - -title [mc "git-gui: fatal error"] \ + -title "git-gui: fatal error" \ -message $err exit 1 }