diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-25 18:21:57 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-25 18:21:57 +0000 |
commit | 3d842d7f4e7f029b47e8a1043b5550350838fb43 (patch) | |
tree | 2a2609f57eb37c1162a2d8256541ca7f1a00002b /lib/vars.pm | |
parent | b4cea2271f29371e2e2e0dc880d921b95d676b12 (diff) | |
download | perl-3d842d7f4e7f029b47e8a1043b5550350838fb43.tar.gz |
typo in vars.pm that leads to cryptic message (from Piotr Piatkowski
<kompas@kompas.usr.onet.pl>)
p4raw-id: //depot/perl@5948
Diffstat (limited to 'lib/vars.pm')
-rw-r--r-- | lib/vars.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vars.pm b/lib/vars.pm index bde0b2a0e8..0ace55169c 100644 --- a/lib/vars.pm +++ b/lib/vars.pm @@ -8,7 +8,8 @@ require 5.002; # if Carp hasn't been loaded in earlier compile time. :-( # We'll let those bugs get found on the development track. require Carp if $] < 5.00450; -use warnings::register(); + +use warnings::register; sub import { my $callpack = caller; |