summaryrefslogtreecommitdiffstats
path: root/tools/binlang
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-10-13 10:08:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-10-13 10:08:11 +0000
commit4aff85fe95140e4b47672954f4e899c71e81b5c2 (patch)
treeb9d49ee75fbbafe196b547b077ac0743882730d2 /tools/binlang
parent9e8a1c77593d10488d8ee0303f8fa41da793a6c5 (diff)
downloadrockbox-4aff85fe95140e4b47672954f4e899c71e81b5c2.tar.gz
rockbox-4aff85fe95140e4b47672954f4e899c71e81b5c2.zip
fixed the quote checking regex to look like the one in genlang
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2603 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/binlang')
-rwxr-xr-xtools/binlang2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binlang b/tools/binlang
index e77830fc6e..3d7fdff1db 100755
--- a/tools/binlang
+++ b/tools/binlang
@@ -89,7 +89,7 @@ while(<LANG>) {
$value = $set{'eng'};
}
- if($value =~ s/^\"(.*)\"/$1/g) {
+ if($value =~ s/^\"(.*)\" *$/$1/g) {
$idnum = $idnum{$set{'id'}};
$idnum{$set{'id'}} = '_done_';