Change 20701 by [EMAIL PROTECTED] on 2003/08/14 14:17:42
Subject: [DOC PATCH] warnings.pl
From: Elizabeth Mattijsen <[EMAIL PROTECTED]>
Date: Thu, 14 Aug 2003 13:12:55 +0200
Message-id: <[EMAIL PROTECTED]>
(some rewording)
Affected files ...
... //depot/perl/lib/warnings.pm#29 edit
... //depot/perl/warnings.pl#33 edit
Differences ...
==== //depot/perl/lib/warnings.pm#29 (text+w) ====
Index: perl/lib/warnings.pm
--- perl/lib/warnings.pm#28~20695~ Wed Aug 13 23:44:10 2003
+++ perl/lib/warnings.pm Thu Aug 14 07:17:42 2003
@@ -39,6 +39,10 @@
=head1 DESCRIPTION
+The C<warnings> 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<perllexwarn> for more information.
+
If no import list is supplied, all possible warnings are either enabled
or disabled.
==== //depot/perl/warnings.pl#33 (text) ====
Index: perl/warnings.pl
--- perl/warnings.pl#32~20695~ Wed Aug 13 23:44:10 2003
+++ perl/warnings.pl Thu Aug 14 07:17:42 2003
@@ -508,6 +508,10 @@
=head1 DESCRIPTION
+The C<warnings> 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<perllexwarn> for more information.
+
If no import list is supplied, all possible warnings are either enabled
or disabled.
End of Patch.