summaryrefslogtreecommitdiff
path: root/ext/MIME
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-04 12:44:05 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-04 12:44:05 +0000
commita7c85e4f5cc80b251f4d124c0fd790a9ddde2735 (patch)
treeee451d0cfb6c4b38d6b71fa774f434e5bfe78340 /ext/MIME
parenta6f8e609ea1ee8b98fd76b40d1ce1f2222d0fb6d (diff)
downloadperl-a7c85e4f5cc80b251f4d124c0fd790a9ddde2735.tar.gz
use is a compile-time thing.
p4raw-id: //depot/perl@10426
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 b3ff9924f6..21110a0d74 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
- use Encode ();
+ require Encode; import Encode;
}
require Exporter;