diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-04 12:44:05 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-04 12:44:05 +0000 |
commit | a7c85e4f5cc80b251f4d124c0fd790a9ddde2735 (patch) | |
tree | ee451d0cfb6c4b38d6b71fa774f434e5bfe78340 /ext/MIME | |
parent | a6f8e609ea1ee8b98fd76b40d1ce1f2222d0fb6d (diff) | |
download | perl-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.pm | 2 |
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; |