From: Jarkko Hietaniemi Date: Mon, 4 Jun 2001 14:47:50 +0000 (+0000) Subject: Do not import anything from Encode. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4689197919065730154c1a7e7d25aad59b7cd47c;p=p5sagit%2Fp5-mst-13.2.git Do not import anything from Encode. p4raw-id: //depot/perl@10429 --- diff --git a/ext/MIME/Base64/QuotedPrint.pm b/ext/MIME/Base64/QuotedPrint.pm index 8cf42b4..409c716 100644 --- a/ext/MIME/Base64/QuotedPrint.pm +++ b/ext/MIME/Base64/QuotedPrint.pm @@ -65,7 +65,7 @@ modify it under the same terms as Perl itself. use strict; use vars qw(@ISA @EXPORT $VERSION); if (ord('A') == 193) { # on EBCDIC machines we need translation help - require Encode; import Encode; + require Encode; } require Exporter;