diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-04 14:47:50 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-04 14:47:50 +0000 |
commit | 4689197919065730154c1a7e7d25aad59b7cd47c (patch) | |
tree | e802382af18392875bba16c263be1669f0c5fcf0 /ext/MIME | |
parent | 18085af43f37d9b6d6bdb18bc8afe8bcd232298e (diff) | |
download | perl-4689197919065730154c1a7e7d25aad59b7cd47c.tar.gz |
Do not import anything from Encode.
p4raw-id: //depot/perl@10429
Diffstat (limited to 'ext/MIME')
-rw-r--r-- | ext/MIME/Base64/QuotedPrint.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/MIME/Base64/QuotedPrint.pm b/ext/MIME/Base64/QuotedPrint.pm index 8cf42b4881..409c716485 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; |