summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-11-17 22:01:33 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-11-17 22:01:33 +0000
commitc63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13 (patch)
tree9bcfbc02ac4fa8ce41d4e6d086849b37d3c99232
parent9ca0657e0f119fc06257a6f86b2d0346fba93bcb (diff)
downloaddrakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.tar
drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.tar.gz
drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.tar.bz2
drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.tar.xz
drakwizard-c63eea5a62be6c16ea5b7e1d20d4bbdbb336dc13.zip
fix escaping
-rwxr-xr-xpo/fake_c.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/po/fake_c.pl b/po/fake_c.pl
index d3ed27b0..6eb9bf83 100755
--- a/po/fake_c.pl
+++ b/po/fake_c.pl
@@ -15,7 +15,7 @@ s|//|/""/|g; # ensure // or not understood as comments
s|$|\\n\\|; # multi-line strings not handled in C
-s/\\(@|$)/$1/g; # perl needs escaped special caracters but gettext must *not*
+s/\\(\@|\$)/$1/g; # perl needs escaped special caracters but gettext must *not*
sub simpl {
local $_ = $_[0];