diff options
-rw-r--r-- | Porting/todo.pod | 2 | ||||
-rw-r--r-- | ext/File-Find/lib/File/Find.pm | 4 | ||||
-rw-r--r-- | lib/B/Deparse.pm | 2 | ||||
-rw-r--r-- | lib/warnings/register.pm | 5 | ||||
-rw-r--r-- | pod/perldiag.pod | 2 | ||||
-rw-r--r-- | pod/perlfunc.pod | 2 | ||||
-rw-r--r-- | pod/perlrun.pod | 6 | ||||
-rw-r--r-- | pod/perltrap.pod | 2 | ||||
-rw-r--r-- | pod/perlunicode.pod | 2 |
9 files changed, 13 insertions, 14 deletions
diff --git a/Porting/todo.pod b/Porting/todo.pod index b3aff0943f..e890236d43 100644 --- a/Porting/todo.pod +++ b/Porting/todo.pod @@ -856,7 +856,7 @@ if available-- but B<only> if available, all platforms will B<not> have catgets(). For the really pure at heart, consider extending this item to cover -also the warning messages (see L<perllexwarn>, C<warnings.pl>). +also the warning messages (see L<warnings>, C<regen/warnings.pl>). =head1 Tasks that need a knowledge of the interpreter diff --git a/ext/File-Find/lib/File/Find.pm b/ext/File-Find/lib/File/Find.pm index 59953129cb..6cfdb59aef 100644 --- a/ext/File-Find/lib/File/Find.pm +++ b/ext/File-Find/lib/File/Find.pm @@ -3,7 +3,7 @@ use 5.006; use strict; use warnings; use warnings::register; -our $VERSION = '1.26'; +our $VERSION = '1.27'; require Exporter; require Cwd; @@ -299,7 +299,7 @@ situations. You can disable these warnings by putting the statement no warnings 'File::Find'; -in the appropriate scope. See L<perllexwarn> for more info about lexical +in the appropriate scope. See L<warnings> for more info about lexical warnings. =head1 CAVEAT diff --git a/lib/B/Deparse.pm b/lib/B/Deparse.pm index 80c6401844..e7eb8cf90d 100644 --- a/lib/B/Deparse.pm +++ b/lib/B/Deparse.pm @@ -5336,7 +5336,7 @@ parameter twice: warnings => [FATAL => qw/void io/], ); -See L<perllexwarn> for more information about lexical warnings. +See L<warnings> for more information about lexical warnings. =item hint_bits diff --git a/lib/warnings/register.pm b/lib/warnings/register.pm index 45fd9a2fe0..62a3dbfce0 100644 --- a/lib/warnings/register.pm +++ b/lib/warnings/register.pm @@ -1,6 +1,6 @@ package warnings::register; -our $VERSION = '1.02'; +our $VERSION = '1.03'; =pod @@ -16,8 +16,7 @@ warnings::register - warnings import function Creates a warnings category with the same name as the current package. -See L<warnings> and L<perllexwarn> for more information on this module's -usage. +See L<warnings> for more information on this module's usage. =cut diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 5482684ddf..09281ee6c8 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -6739,6 +6739,6 @@ shows whereabouts in the regular expression the problem was discovered. =head1 SEE ALSO -L<warnings>, L<perllexwarn>, L<diagnostics>. +L<warnings>, L<diagnostics>. =cut diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 8f4df97762..b8af8ff885 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -1833,7 +1833,7 @@ C<$@>. Beware that using C<eval> neither silences Perl from printing warnings to STDERR, nor does it stuff the text of warning messages into C<$@>. To do either of those, you have to use the C<$SIG{__WARN__}> facility, or turn off warnings inside the BLOCK or EXPR using S<C<no warnings 'all'>>. -See L</warn>, L<perlvar>, L<warnings> and L<perllexwarn>. +See L</warn>, L<perlvar>, and L<warnings>. Note that, because C<eval> traps otherwise-fatal errors, it is useful for determining whether a particular feature (such as C<socket> or C<symlink>) diff --git a/pod/perlrun.pod b/pod/perlrun.pod index b54588171e..c6aa81c6c5 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -920,19 +920,19 @@ can disable or promote into fatal errors specific warnings using C<__WARN__> hooks, as described in L<perlvar> and L<perlfunc/warn>. See also L<perldiag> and L<perltrap>. A fine-grained warning facility is also available if you want to manipulate entire classes -of warnings; see L<warnings> or L<perllexwarn>. +of warnings; see L<warnings>. =item B<-W> X<-W> Enables all warnings regardless of C<no warnings> or C<$^W>. -See L<perllexwarn>. +See L<warnings>. =item B<-X> X<-X> Disables all warnings regardless of C<use warnings> or C<$^W>. -See L<perllexwarn>. +See L<warnings>. =item B<-x> X<-x> diff --git a/pod/perltrap.pod b/pod/perltrap.pod index 1edb7f60f9..7954b7a59b 100644 --- a/pod/perltrap.pod +++ b/pod/perltrap.pod @@ -5,7 +5,7 @@ perltrap - Perl traps for the unwary =head1 DESCRIPTION The biggest trap of all is forgetting to C<use warnings> or use the B<-w> -switch; see L<perllexwarn> and L<perlrun>. The second biggest trap is not +switch; see L<warnings> and L<perlrun>. The second biggest trap is not making your entire program runnable under C<use strict>. The third biggest trap is not reading the list of changes in this version of Perl; see L<perldelta>. diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index 95db7ac355..06cd938556 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -1403,7 +1403,7 @@ the C<"non_unicode"> warning class has been made fatal, say by: use warnings FATAL => "non_unicode" -(see L<perllexwarn>). In this mode of operation, Perl will raise the +(see L<warnings>). In this mode of operation, Perl will raise the warning for all matches against a non-Unicode code point (not just the arguable ones), and it skips the optimizations that might cause the warning to not be output. (It currently still won't warn if the match |