diff options
author | Ricardo Signes <rjbs@cpan.org> | 2014-03-14 09:15:36 +0100 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2014-03-18 13:22:35 -0400 |
commit | 44ecbbd814e71f2c059520c0bc148cc2cf1abc55 (patch) | |
tree | 381d3ae0569ace6cf936dc0b8049a65ac523511d /pod | |
parent | d2ec25a5ba622b2b027aa4c7967f7352c704f84b (diff) | |
download | perl-44ecbbd814e71f2c059520c0bc148cc2cf1abc55.tar.gz |
replace links to perllexwarn with links to warnings
or, sometimes, simply remove them
Diffstat (limited to 'pod')
-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 |
5 files changed, 7 insertions, 7 deletions
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 |