tiny bug in vars.pm (from John Dlugosz)
authorGurusamy Sarathy <gsar@cpan.org>
Sat, 17 Jul 1999 20:39:08 +0000 (20:39 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Sat, 17 Jul 1999 20:39:08 +0000 (20:39 +0000)
p4raw-id: //depot/perl@3686

lib/vars.pm

index 334af96..ca2a08d 100644 (file)
@@ -14,7 +14,7 @@ sub import {
     my ($pack, @imports, $sym, $ch) = @_;
     foreach $sym (@imports) {
         ($ch, $sym) = unpack('a1a*', $sym);
-       if ($sym =~ tr/A-Za-Z_0-9//c) {
+       if ($sym =~ tr/A-Za-z_0-9//c) {
            # time for a more-detailed check-up
            if ($sym =~ /::/) {
                require Carp;