summaryrefslogtreecommitdiffstats
path: root/MDK/Common/Various.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-05-27 05:24:57 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-05-27 05:24:57 +0000
commit6628b3608b7c30da683c03d1c18d94706f991db5 (patch)
treedd264f20c26c7a3352eb11128b06fb368dbc1f9c /MDK/Common/Various.pm
parent43750f2338ccfc28518234374c9a0e2af424eb61 (diff)
downloadperl-MDK-Common-6628b3608b7c30da683c03d1c18d94706f991db5.tar
perl-MDK-Common-6628b3608b7c30da683c03d1c18d94706f991db5.tar.gz
perl-MDK-Common-6628b3608b7c30da683c03d1c18d94706f991db5.tar.bz2
perl-MDK-Common-6628b3608b7c30da683c03d1c18d94706f991db5.tar.xz
perl-MDK-Common-6628b3608b7c30da683c03d1c18d94706f991db5.zip
use "our" instead of "use vars"
Diffstat (limited to 'MDK/Common/Various.pm')
-rw-r--r--MDK/Common/Various.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/MDK/Common/Various.pm b/MDK/Common/Various.pm
index 7072aad..96e76d3 100644
--- a/MDK/Common/Various.pm
+++ b/MDK/Common/Various.pm
@@ -96,10 +96,10 @@ L<MDK::Common>
=cut
-use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK);
-@ISA = qw(Exporter);
-@EXPORT_OK = qw(first second top to_bool to_int to_float bool2text bool2yesno text2bool chomp_ backtrace internal_error noreturn);
-%EXPORT_TAGS = (all => [ @EXPORT_OK ]);
+use Exporter;
+our @ISA = qw(Exporter);
+our @EXPORT_OK = qw(first second top to_bool to_int to_float bool2text bool2yesno text2bool chomp_ backtrace internal_error noreturn);
+our %EXPORT_TAGS = (all => [ @EXPORT_OK ]);
sub first { $_[0] }