diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-02 07:53:51 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-02 07:53:51 +0000 |
commit | 016deec19d7a1f2d11caf896c4645b6b5f96ef57 (patch) | |
tree | 8c6efaa9d96c8eab8c80c68fe4e15d92aec8f7b4 /lib/English.pm | |
parent | 6777ba7cc37eb5f7df9d159dcc6b3360d1bac25e (diff) | |
download | perl-016deec19d7a1f2d11caf896c4645b6b5f96ef57.tar.gz |
use warnings rather than fiddling with $^W (from Paul Marquess)
p4raw-id: //depot/perl@4954
Diffstat (limited to 'lib/English.pm')
-rw-r--r-- | lib/English.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/English.pm b/lib/English.pm index 9f29a487dc..9ed4fc8597 100644 --- a/lib/English.pm +++ b/lib/English.pm @@ -37,7 +37,7 @@ See L<perlvar> for a complete list of these. =cut -local $^W = 0; +no warnings; # Grandfather $NAME import sub import { |