diff options
author | Pat Thoyts <patthoyts@users.sourceforge.net> | 2010-08-02 12:13:05 +0100 |
---|---|---|
committer | Pat Thoyts <patthoyts@users.sourceforge.net> | 2010-08-02 12:13:05 +0100 |
commit | 9cb268c426ccb2bb836418caad669476b5dd1933 (patch) | |
tree | fefc0a452016218e06506868da7adc28498e399e | |
parent | 1fbaccad4dd8d6a9a893843c73f3e47c4ba8b717 (diff) | |
download | git-9cb268c426ccb2bb836418caad669476b5dd1933.tar.gz |
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 <patthoyts@users.sourceforge.net>
-rwxr-xr-x | git-gui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |