From: Elizabeth Mattijsen Date: Thu, 14 Aug 2003 13:12:55 +0000 (+0200) Subject: [DOC PATCH] warnings.pl X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe2e802c4d2b58a658b8e1b2dcc86f8373006bab;p=p5sagit%2Fp5-mst-13.2.git [DOC PATCH] warnings.pl Message-id: (some rewording) p4raw-id: //depot/perl@20701 --- diff --git a/lib/warnings.pm b/lib/warnings.pm index 6982b2c..705548a 100644 --- a/lib/warnings.pm +++ b/lib/warnings.pm @@ -39,6 +39,10 @@ warnings - Perl pragma to control optional warnings =head1 DESCRIPTION +The C pragma is a replacement for the command line flag C<-w>, +but the pragma is limited to the enclosing block, while the flag is global. +See L for more information. + If no import list is supplied, all possible warnings are either enabled or disabled. diff --git a/warnings.pl b/warnings.pl index b720274..eff8d60 100644 --- a/warnings.pl +++ b/warnings.pl @@ -508,6 +508,10 @@ warnings - Perl pragma to control optional warnings =head1 DESCRIPTION +The C pragma is a replacement for the command line flag C<-w>, +but the pragma is limited to the enclosing block, while the flag is global. +See L for more information. + If no import list is supplied, all possible warnings are either enabled or disabled.