summaryrefslogtreecommitdiff
path: root/pod/perlapi.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-12-22 10:32:17 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-12-22 10:32:17 +0000
commit9f435386c83a4cc6da710aa79ee7eb835c76e1f6 (patch)
treee0cc107dd0df4bb06773cc76a5828a1ab72778a9 /pod/perlapi.pod
parent4b7b0ae45d1e8cec5bda40978b6be340b66aaa24 (diff)
downloadperl-9f435386c83a4cc6da710aa79ee7eb835c76e1f6.tar.gz
Regenerate perlapi.pod.
Fix indentation of code examples in perlsyn. p4raw-id: //depot/perl@26443
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r--pod/perlapi.pod14
1 files changed, 14 insertions, 0 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index 2931da4c5b..e3dac62d06 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -1119,6 +1119,19 @@ Return the SV from the GV.
=for hackers
Found in file gv.h
+=item gv_const_sv
+X<gv_const_sv>
+
+If C<gv> is a typeglob whose subroutine entry is a constant sub eligible for
+inlining, or C<gv> is a placeholder reference that would be promoted to such
+a typeglob, then returns the value returned by the sub. Otherwise, returns
+NULL.
+
+ SV* gv_const_sv(GV* gv)
+
+=for hackers
+Found in file gv.c
+
=item gv_fetchmeth
X<gv_fetchmeth>
@@ -4554,6 +4567,7 @@ X<sv_2cv>
Using various gambits, try to get a CV from an SV; in addition, try if
possible to set C<*st> and C<*gvp> to the stash and GV associated with it.
+The flags in C<lref> are passed to sv_fetchsv.
CV* sv_2cv(SV* sv, HV** st, GV** gvp, I32 lref)