summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-10-30 09:59:41 +0000
committerNicholas Clark <nick@ccl4.org>2005-10-30 09:59:41 +0000
commit887986eb9473f45f115f0a49ec6a7899f43f8906 (patch)
treef23bf4a29472289d649c063d59081a86dbc7906b /mathoms.c
parentf95f476d3e4012b98bef777c4cf9fdc247d48d71 (diff)
downloadperl-887986eb9473f45f115f0a49ec6a7899f43f8906.tar.gz
Replace gv_fetchmethod() with a macro to call gv_fetchmethod_autoload()
with the extra TRUE argument. p4raw-id: //depot/perl@25893
Diffstat (limited to 'mathoms.c')
-rw-r--r--mathoms.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/mathoms.c b/mathoms.c
index 3c92a423f6..ce2022ed01 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -581,6 +581,20 @@ Perl_gv_efullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
gv_efullname4(sv, gv, prefix, TRUE);
}
+/*
+=for apidoc gv_fetchmethod
+
+See L<gv_fetchmethod_autoload>.
+
+=cut
+*/
+
+GV *
+Perl_gv_fetchmethod(pTHX_ HV *stash, const char *name)
+{
+ return gv_fetchmethod_autoload(stash, name, TRUE);
+}
+
AV *
Perl_av_fake(pTHX_ register I32 size, register SV **strp)
{