Revision 673c231d
Von Moritz Bunkus vor etwa 14 Jahren hinzugefügt
scripts/locales.pl | ||
---|---|---|
|
||
} else {
|
||
if ($quote_next) {
|
||
$text .= '\\' unless $cur_char eq "'";
|
||
$text .= $cur_char;
|
||
$quote_next = 0;
|
||
|
||
} elsif ($cur_char eq '\\') {
|
||
$text .= $cur_char;
|
||
$quote_next = 1;
|
||
|
||
} elsif ($cur_char eq $inside_string) {
|
Auch abrufbar als: Unified diff
Nicht zu viele Quote-Chars behalten.