diff options
author | Tom Christiansen <tchrist@perl.com> | 1998-08-11 05:58:07 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-12-02 18:03:51 +0000 |
commit | b687b08b628449b317ff558f31d9d716ace045de (patch) | |
tree | cf2f3d08c76010d3997b1647f790742612a48c39 /pod/perlguts.pod | |
parent | b2d124e428258350667f59b4f3c8ccc7a652e994 (diff) | |
download | perl-b687b08b628449b317ff558f31d9d716ace045de.tar.gz |
Fix most of the bad L<> links of
Subject: bad L<> links
Reply-to: tchrist@perl.com
To: perlbug@jhereg.perl.com
Message-Id: <199808111658.KAA00484@jhereg.perl.com>
The ones not fixed may require darker Pod::HTML magic,
for example the perlguts.html#tags should work fine, IMHO.
p4raw-id: //depot/cfgperl@2437
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 38d75691f2..4ccc6c6e2f 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -1025,13 +1025,13 @@ There is a way to achieve a similar task from C via Perl API: create a I<pseudo-block>, and arrange for some changes to be automatically undone at the end of it, either explicit, or via a non-local exit (via die()). A I<block>-like construct is created by a pair of -C<ENTER>/C<LEAVE> macros (see L<perlcall/EXAMPLE/"Returning a -Scalar">). Such a construct may be created specially for some -important localized task, or an existing one (like boundaries of -enclosing Perl subroutine/block, or an existing pair for freeing TMPs) -may be used. (In the second case the overhead of additional -localization must be almost negligible.) Note that any XSUB is -automatically enclosed in an C<ENTER>/C<LEAVE> pair. +C<ENTER>/C<LEAVE> macros (see L<perlcall/"Returning a Scalar">). +Such a construct may be created specially for some important localized +task, or an existing one (like boundaries of enclosing Perl +subroutine/block, or an existing pair for freeing TMPs) may be +used. (In the second case the overhead of additional localization must +be almost negligible.) Note that any XSUB is automatically enclosed in +an C<ENTER>/C<LEAVE> pair. Inside such a I<pseudo-block> the following service is available: |