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/perlfunc.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/perlfunc.pod')
-rw-r--r-- | pod/perlfunc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
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>) |