summaryrefslogtreecommitdiff
path: root/pod/perlcall.pod
diff options
context:
space:
mode:
authorTom Christiansen <tchrist@perl.com>1998-08-11 05:58:07 -0500
committerJarkko Hietaniemi <jhi@iki.fi>1998-12-02 18:03:51 +0000
commitb687b08b628449b317ff558f31d9d716ace045de (patch)
treecf2f3d08c76010d3997b1647f790742612a48c39 /pod/perlcall.pod
parentb2d124e428258350667f59b4f3c8ccc7a652e994 (diff)
downloadperl-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/perlcall.pod')
-rw-r--r--pod/perlcall.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlcall.pod b/pod/perlcall.pod
index e3e02de613..8771be852b 100644
--- a/pod/perlcall.pod
+++ b/pod/perlcall.pod
@@ -72,7 +72,7 @@ Each of the functions will now be discussed in turn.
=over 5
-=item B<perl_call_sv>
+=item perl_call_sv
I<perl_call_sv> takes two parameters, the first, C<sv>, is an SV*.
This allows you to specify the Perl subroutine to be called either as a
@@ -80,7 +80,7 @@ C string (which has first been converted to an SV) or a reference to a
subroutine. The section, I<Using perl_call_sv>, shows how you can make
use of I<perl_call_sv>.
-=item B<perl_call_pv>
+=item perl_call_pv
The function, I<perl_call_pv>, is similar to I<perl_call_sv> except it
expects its first parameter to be a C char* which identifies the Perl
@@ -88,7 +88,7 @@ subroutine you want to call, e.g., C<perl_call_pv("fred", 0)>. If the
subroutine you want to call is in another package, just include the
package name in the string, e.g., C<"pkg::fred">.
-=item B<perl_call_method>
+=item perl_call_method
The function I<perl_call_method> is used to call a method from a Perl
class. The parameter C<methname> corresponds to the name of the method
@@ -99,7 +99,7 @@ object (for a virtual method). See L<perlobj> for more information on
static and virtual methods and L<Using perl_call_method> for an example
of using I<perl_call_method>.
-=item B<perl_call_argv>
+=item perl_call_argv
I<perl_call_argv> calls the Perl subroutine specified by the C string
stored in the C<subname> parameter. It also takes the usual C<flags>