1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Daniel Stenberg 2002-10-13 10:08:11 +00:00
parent 9e8a1c7759
commit 4aff85fe95

View file

@ -89,7 +89,7 @@ while(<LANG>) {
$value = $set{'eng'}; $value = $set{'eng'};
} }
if($value =~ s/^\"(.*)\"/$1/g) { if($value =~ s/^\"(.*)\" *$/$1/g) {
$idnum = $idnum{$set{'id'}}; $idnum = $idnum{$set{'id'}};
$idnum{$set{'id'}} = '_done_'; $idnum{$set{'id'}} = '_done_';