Style issue
Rafael Garcia-Suarez [Tue, 15 Jan 2002 15:36:30 +0000 (16:36 +0100)]
Message-ID: <20020115153630.A11568@rafael>

p4raw-id: //depot/perl@14278

pod/perldiag.pod

index af78458..a47dda1 100644 (file)
@@ -1472,7 +1472,7 @@ to the end of your file without finding such a line.
 (W redefine) You redefined a format.  To suppress this warning, say
 
     {
-       no warnings;
+       no warnings 'redefine';
        eval "format NAME =...";
     }
 
@@ -3300,7 +3300,7 @@ C<can> may break this.
 (W redefine) You redefined a subroutine.  To suppress this warning, say
 
     {
-       no warnings;
+       no warnings 'redefine';
        eval "sub name { ... }";
     }