From: Moritz Bunkus Date: Wed, 29 Sep 2010 13:41:42 +0000 (+0200) Subject: Emacs syntax highlighting fix X-Git-Tag: release-2.6.2beta1~110^2~10 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=ec5558685b18db2407692464a0f3a6d022b9a845;p=kivitendo-erp.git Emacs syntax highlighting fix --- diff --git a/scripts/locales.pl b/scripts/locales.pl index 24b06877f..d156ddd03 100755 --- a/scripts/locales.pl +++ b/scripts/locales.pl @@ -576,7 +576,7 @@ sub strip_base { sub _single_quote { my $val = shift; - $val =~ s/('|\\$)/\\$1/g; + $val =~ s/(\'|\\$)/\\$1/g; return "'" . $val . "'"; }