summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 421a31e)
raw | patch | inline | side by side (parent: 421a31e)
author | Pat Thoyts <patthoyts@users.sourceforge.net> | |
Mon, 13 Sep 2010 19:41:42 +0000 (20:41 +0100) | ||
committer | Pat Thoyts <patthoyts@users.sourceforge.net> | |
Mon, 13 Sep 2010 19:41:42 +0000 (20:41 +0100) |
On Windows the tcl script file will use the system encoding and attempting
to convert the copyright mis-encodes the string. Instead, keep the message
as ASCII and substitute in the correct unicode character when running.
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
to convert the copyright mis-encodes the string. Instead, keep the message
as ASCII and substitute in the correct unicode character when running.
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
git-gui.sh | patch | blob | history |
diff --git a/git-gui.sh b/git-gui.sh
index 0d5c5e389e53dde25b6022321bb7c548d59a8d8d..4617f29c26726c2cd438f160be21a8422e66b352 100755 (executable)
--- a/git-gui.sh
+++ b/git-gui.sh
exec wish "$argv0" -- "$@"
set appvers {@@GITGUI_VERSION@@}
-set copyright [encoding convertfrom utf-8 {
-Copyright © 2006, 2007 Shawn Pearce, et. al.
+set copyright [string map [list (c) \u00a9] {
+Copyright (c) 2006-2010 Shawn Pearce, et. al.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by