diff options
author | Nicolas R <atoomic@cpan.org> | 2017-09-12 13:20:25 -0600 |
---|---|---|
committer | Todd Rinaldo <toddr@cpan.org> | 2017-11-11 01:07:18 -0600 |
commit | 3d3a0a8a5e7ee9abf3f3e52e1b63942b8c55a069 (patch) | |
tree | 0b9243ef82f41ad1cdfc2b934499e49615dce73d /pod | |
parent | fd55ca4fb1e49bf9880aad1e3d9f27ace56ec139 (diff) | |
download | perl-3d3a0a8a5e7ee9abf3f3e52e1b63942b8c55a069.tar.gz |
Replace multiple 'use vars' by 'our' in utils
Using vars pragma is discouraged and has been superseded by 'our' declarations
available in Perl v5.6.0 or later.
Diffstat (limited to 'pod')
-rw-r--r-- | pod/buildtoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/buildtoc b/pod/buildtoc index 9c66e93792..004a726a0f 100644 --- a/pod/buildtoc +++ b/pod/buildtoc @@ -1,12 +1,12 @@ #!/usr/bin/perl -w use strict; -use vars qw($Quiet); use File::Spec; use FindBin; use Text::Wrap; use Getopt::Long; +our $Quiet; no locale; # Assumption is that we're either already being run from the top level (*nix, |