From: Jarkko Hietaniemi Date: Mon, 4 Jun 2001 12:44:05 +0000 (+0000) Subject: use is a compile-time thing. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a7c85e4f5cc80b251f4d124c0fd790a9ddde2735;p=p5sagit%2Fp5-mst-13.2.git use is a compile-time thing. p4raw-id: //depot/perl@10426 --- diff --git a/ext/MIME/Base64/QuotedPrint.pm b/ext/MIME/Base64/QuotedPrint.pm index b3ff992..21110a0 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;