From: Gurusamy Sarathy Date: Tue, 15 Feb 2000 17:43:27 +0000 (+0000) Subject: s/use vars/our/ (from Gisle Aas) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1b11e67edbe89713905c9ffc189c0c9564ca5406;p=p5sagit%2Fp5-mst-13.2.git s/use vars/our/ (from Gisle Aas) p4raw-id: //depot/perl@5105 --- diff --git a/bytecode.pl b/bytecode.pl index 00df48b..0ffe8e4 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -47,7 +47,7 @@ package B::Asmdata; use Exporter; @ISA = qw(Exporter); @EXPORT_OK = qw(%insn_data @insn_name @optype @specialsv_name); -use vars qw(%insn_data @insn_name @optype @specialsv_name); +our(%insn_data, @insn_name, @optype, @specialsv_name); EOT print ASMDATA_PM <<"EOT";