perlunifaq, uniintro: fix for 80 col display
[p5sagit/p5-mst-13.2.git] / pod / perl5113delta.pod
index bee6697..5c4e196 100644 (file)
@@ -1,6 +1,6 @@
 =head1 NAME
 
-perldelta - what is new for perl v5.11.3
+perl5113delta - what is new for perl v5.11.3
 
 =head1 DESCRIPTION
 
@@ -440,27 +440,8 @@ longer causes a bus error if run multiple times. [perl #71076]
 
 =item *
 
-The two warnings :
-
-  Illegal character in prototype for %s : %s
-  Prototype after '%c' for %s : %s
-
-have been moved from the C<syntax> top-level warnings category into a new
-first-level category, C<illegalproto>. These two warnings are currently the
-only ones emitted during parsing of an invalid/illegal prototype, so one
-can now do
-
-  no warnings 'illegalproto';
-
-to suppress only those, but not other syntax-related warnings. Warnings where
-prototypes are changed, ignored, or not met are still in the C<prototype>
-category as before. (Matt S. Trout)
-
-=item *
-
 C<split> now warns when called in void context
 
-
 =item *
 
 C<printf>-style functions called with too few arguments will now issue the