summaryrefslogtreecommitdiff
path: root/ext/MIME
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-04 14:47:50 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-04 14:47:50 +0000
commit4689197919065730154c1a7e7d25aad59b7cd47c (patch)
treee802382af18392875bba16c263be1669f0c5fcf0 /ext/MIME
parent18085af43f37d9b6d6bdb18bc8afe8bcd232298e (diff)
downloadperl-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.pm2
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;