Bei Emacs sind die Charsets lowercase: "iso-8859-15" anstelle von "ISO-8859-15"
authorMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 30 Sep 2010 13:00:09 +0000 (15:00 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 30 Sep 2010 13:00:09 +0000 (15:00 +0200)
locale/de/all
scripts/locales.pl

index 18b6d39..2e4ad9b 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# -*- coding: ISO-8859-15; -*-
+# -*- coding: iso-8859-15; -*-
 # vim: fenc=ISO-8859-15
 
 # These are all the texts to build the translations files.
index d156ddd..fa787a2 100755 (executable)
@@ -601,7 +601,9 @@ sub generate_file {
 
   open my $fh, '>', $file or die "$! : $file";
 
-  print $fh "#!/usr/bin/perl\n# -*- coding: $charset; -*-\n# vim: fenc=$charset\n\n";
+  my $emacs_charset = lc $charset;
+
+  print $fh "#!/usr/bin/perl\n# -*- coding: $emacs_charset; -*-\n# vim: fenc=$charset\n\n";
   print $fh $header, "\n" if $header;
   print $fh "$data_name = $delim[0]\n" if $data_name;