From dca0f46022271e62b279b76114baad2d071ba703 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Wed, 30 Jul 2008 23:52:53 +0000 Subject: [PATCH] utf8 pragma --- fingerprints.pl | 1 + split_marc.pl | 1 + spot_check.pl | 1 + 3 files changed, 3 insertions(+), 0 deletions(-) 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' ); -- 1.7.2.5