From: Jason Etheridge Date: Wed, 30 Jul 2008 23:52:53 +0000 (+0000) Subject: utf8 pragma X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=dca0f46022271e62b279b76114baad2d071ba703 utf8 pragma --- diff --git a/fingerprints.pl b/fingerprints.pl index 223bae8..ff2d1a9 100755 --- a/fingerprints.pl +++ b/fingerprints.pl @@ -1,4 +1,5 @@ #!/usr/bin/perl +use open ':utf8'; use MARC::Batch; use MARC::File::XML ( BinaryEncoding => 'utf-8' ); use MARC::Field; diff --git a/split_marc.pl b/split_marc.pl index f98eada..c60aab4 100644 --- a/split_marc.pl +++ b/split_marc.pl @@ -1,4 +1,5 @@ #!/usr/bin/perl +use open ':utf8'; use MARC::Batch; use MARC::Record; use MARC::File::XML ( BinaryEncoding => 'utf-8' ); diff --git a/spot_check.pl b/spot_check.pl index 17a6e51..0da2c75 100644 --- a/spot_check.pl +++ b/spot_check.pl @@ -1,4 +1,5 @@ #!/usr/bin/perl +use open ':utf8'; use MARC::Batch; use MARC::Record; use MARC::File::XML ( BinaryEncoding => 'utf-8' );