From 276c9210946afd5a25f08e38e69079c3d3456630 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Tue, 4 Dec 2001 14:39:38 +0000 Subject: [PATCH] Make the eval runtime. p4raw-id: //depot/perl@13459 --- lib/open.pm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/open.pm b/lib/open.pm index 5140f6b..79cd61b 100644 --- a/lib/open.pm +++ b/lib/open.pm @@ -10,11 +10,8 @@ sub in_locale { $^H & $locale::hint_bits } sub _get_locale_encoding { unless (defined $locale_encoding) { - eval { - # I18N::Langinfo isn't available everywhere - require I18N::Langinfo; - I18N::Langinfo->import('langinfo', 'CODESET'); - }; + # I18N::Langinfo isn't available everywhere + eval "use I18N::Langinfo qw(langinfo CODESET)"; unless ($@) { $locale_encoding = langinfo(CODESET()); } -- 2.7.4