summaryrefslogtreecommitdiff
path: root/tools
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
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')
-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>) {
89 $value = $set{'eng'}; 89 $value = $set{'eng'};
90 } 90 }
91 91
92 if($value =~ s/^\"(.*)\"/$1/g) { 92 if($value =~ s/^\"(.*)\" *$/$1/g) {
93 93
94 $idnum = $idnum{$set{'id'}}; 94 $idnum = $idnum{$set{'id'}};
95 $idnum{$set{'id'}} = '_done_'; 95 $idnum{$set{'id'}} = '_done_';