summaryrefslogtreecommitdiff
path: root/gv.h
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2011-07-05 03:26:09 -0300
committerFather Chrysostomos <sprout@cpan.org>2011-10-06 13:00:58 -0700
commitd21989edd792d90d0833257821df6bf9f2ef8e76 (patch)
tree9b1d36df0627592edcfcf66c724e6154adab64db /gv.h
parentb017083ab8aa5210fe7dd9b6b490c08e03f6cf8a (diff)
downloadperl-d21989edd792d90d0833257821df6bf9f2ef8e76.tar.gz
gv.c: Added gv_fetchmeth_(sv|pv|pvn)_autoload.
Diffstat (limited to 'gv.h')
-rw-r--r--gv.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gv.h b/gv.h
index 9aa4effc09..29de70c22c 100644
--- a/gv.h
+++ b/gv.h
@@ -237,7 +237,8 @@ Return the SV from the GV.
#define gv_fetchmethod(stash, name) gv_fetchmethod_autoload(stash, name, TRUE)
#define gv_fetchsv_nomg(n,f,t) gv_fetchsv(n,(f)|GV_NO_SVGMAGIC,t)
#define gv_init(gv,stash,name,len,multi) gv_init_pvn(gv,stash,name,len,multi,0)
-#define gv_fetchmeth(stash,name, len,level) gv_fetchmeth_pvn(stash, name, len, level, 0)
+#define gv_fetchmeth(stash,name,len,level) gv_fetchmeth_pvn(stash, name, len, level, 0)
+#define gv_fetchmeth_autoload(stash,name,len,level) gv_fetchmeth_pvn_autoload(stash, name, len, level, 0)
#define gv_AVadd(gv) gv_add_by_type((gv), SVt_PVAV)
#define gv_HVadd(gv) gv_add_by_type((gv), SVt_PVHV)