diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/MIME/QuotedPrint.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/MIME/QuotedPrint.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/tlperl/lib/MIME/QuotedPrint.pm b/Master/tlpkg/tlperl/lib/MIME/QuotedPrint.pm index d0c71d10439..fe792ad30ea 100644 --- a/Master/tlpkg/tlperl/lib/MIME/QuotedPrint.pm +++ b/Master/tlpkg/tlperl/lib/MIME/QuotedPrint.pm @@ -1,13 +1,13 @@ package MIME::QuotedPrint; use strict; -use vars qw(@ISA @EXPORT $VERSION); +use warnings; require Exporter; -@ISA = qw(Exporter); -@EXPORT = qw(encode_qp decode_qp); +our @ISA = qw(Exporter); +our @EXPORT = qw(encode_qp decode_qp); -$VERSION = "3.13"; +our $VERSION = '3.16'; use MIME::Base64; # will load XS version of {en,de}code_qp() |