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: v1.7.2.2~29^2^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9cb268c426ccb2bb836418caad669476b5dd1933;p=git.git 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 --- diff --git a/git-gui.sh b/git-gui.sh index 88b3f8a08..c3f673613 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 }