summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-05-29 14:54:21 -0600
committerKarl Williamson <khw@cpan.org>2015-05-29 17:11:22 -0600
commiteaa8dfa267a3ef7c94504fc15c1f651cecd4bfdc (patch)
tree4c5f80ce802dcca7f9da68e5f3a72dbb815a6d41
parent2f737055df830280fee8cf7229d6ebabd94a6208 (diff)
downloadperl-eaa8dfa267a3ef7c94504fc15c1f651cecd4bfdc.tar.gz
perldelta: Move 2 fatal msgs into that section from warnings section
-rw-r--r--pod/perldelta.pod36
1 files changed, 18 insertions, 18 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 83f4a7f12b..d7d119abe7 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -1841,6 +1841,24 @@ be parsed as a valid number - either it has leading zeroes, or it represents
too big a number to cope with. The S<<-- HERE> shows where in the regular
expression the problem was discovered. See L<perlre>.
+=item *
+
+L<'%s' is an unknown bound type in regex|perldiag/"'%s' is an unknown bound type in regex; marked by <-- HERE in m/%s/">
+
+(F) You used C<\b{...}> or C<\B{...}> and the C<...> is not known to
+Perl. The current valid ones are given in
+L<perlrebackslash/\b{}, \b, \B{}, \B>.
+
+=item *
+
+L<Missing or undefined argument to require|perldiag/Missing or undefined argument to require>
+
+(F) You tried to call C<require> with no argument or with an undefined
+value as an argument. C<require> expects either a package name or a
+file-specification as an argument. See L<perlfunc/require>.
+
+Formerly, C<require> with no argument or C<undef> warned about a Null filename.
+
=back
=head3 New Warnings
@@ -1859,14 +1877,6 @@ strings.
=item *
-L<'%s' is an unknown bound type in regex|perldiag/"'%s' is an unknown bound type in regex; marked by <-- HERE in m/%s/">
-
-You used C<\b{...}> or C<\B{...}> and the C<...> is not known to
-Perl. The current valid ones are given in
-L<perlrebackslash/\b{}, \b, \B{}, \B>.
-
-=item *
-
L<"%s" is more clearly written simply as "%s" in regex; marked by E<lt>-- HERE in mE<sol>%sE<sol>|perldiag/"%s" is more clearly written simply as "%s" in regex; marked by <-- HERE in mE<sol>%sE<sol>>
(W regexp) (only under C<S<use re 'strict'>> or within C<(?[...])>)
@@ -2195,16 +2205,6 @@ operation would mix Unicode and locale rules, which likely conflict.
=back
-=item *
-
-L<Missing or undefined argument to require|perldiag/Missing or undefined argument to require>
-
-(F) You tried to call C<require> with no argument or with an undefined
-value as an argument. C<require> expects either a package name or a
-file-specification as an argument. See L<perlfunc/require>.
-
-Formerly, C<require> with no argument or C<undef> warned about a Null filename.
-
=back
=head2 Changes to Existing Diagnostics