diff options
author | Alexander Gavrilov <angavrilov@gmail.com> | 2008-08-31 01:12:26 +0400 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-09-01 15:39:11 -0700 |
commit | 9dc3793166db8f3b80b909e2cb3ac3c5d0a611d5 (patch) | |
tree | 93b32d1aab97f5aa0be092f104b9a755c12de690 | |
parent | 55ba8a3474102eb8d638834d2b9bfe58d5014a40 (diff) | |
download | git-9dc3793166db8f3b80b909e2cb3ac3c5d0a611d5.tar.gz git-9dc3793166db8f3b80b909e2cb3ac3c5d0a611d5.tar.xz |
git-gui: Fix string escaping in po2msg.sh
Escape '$', because otherwise git-gui crashes while
trying to load malformed Japanese localization strings.
Signed-off-by: Alexander Gavrilov <angavrilov@gmail.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r-- | po/po2msg.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/po/po2msg.sh b/po/po2msg.sh index b7c4bf3fd..1e9f99252 100644 --- a/po/po2msg.sh +++ b/po/po2msg.sh @@ -11,8 +11,8 @@ proc u2a {s} { foreach i [split $s ""] { scan $i %c c if {$c<128} { - # escape '[', '\' and ']' - if {$c == 0x5b || $c == 0x5d} { + # escape '[', '\', '$' and ']' + if {$c == 0x5b || $c == 0x5d || $c == 0x24} { append res "\\" } append res $i |