This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Correct test names in sub_lval.t
[perl5.git] / lib / vars.pm
index a57f479..8ec107c 100644 (file)
@@ -2,14 +2,14 @@ package vars;
 
 use 5.006;
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 use warnings::register;
 use strict qw(vars subs);
 
 sub import {
     my $callpack = caller;
-    my ($pack, @imports) = @_;
+    my (undef, @imports) = @_;
     my ($sym, $ch);
     foreach (@imports) {
         if (($ch, $sym) = /^([\$\@\%\*\&])(.+)/) {
@@ -77,8 +77,6 @@ outside of the package), it can act as an acceptable substitute by
 pre-declaring global symbols, ensuring their availability to the
 later-loaded routines.
 
-The C<use vars> does not work for UTF-8 variable names.
-
 See L<perlmodlib/Pragmatic Modules>.
 
 =cut