* $/ => \n
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Wed, 4 May 2005 17:49:33 +0000 (17:49 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Wed, 4 May 2005 17:49:33 +0000 (17:49 +0000)
maintenance/entities2literals.pl

index f010374..a981081 100644 (file)
@@ -9,7 +9,7 @@
 use encoding 'utf8';
 use strict;
 
-my $file = join /$\//, <>;
+my $file = join /\n/, <>;
 
 $file =~ s/&#(\d+);/chr $1/eg;
 $file =~ s/&#x([0-9a-fA-F]+);/chr hex $1/eg;