summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2011-07-05 04:37:42 -0300
committerFather Chrysostomos <sprout@cpan.org>2011-10-06 13:00:59 -0700
commit44130a266efbc9cc333a3b386fd6ea15cbd3f9f3 (patch)
tree42db44a35ad0c3b853347087e6a29691927bb8db /embed.h
parentdec33af257d8f60f007432421225ce566dd8a032 (diff)
downloadperl-44130a266efbc9cc333a3b386fd6ea15cbd3f9f3.tar.gz
gv.c: Added gv_fetchmethod_(sv|pv|pvn)_flags.
In addition from taking a flags parameter, it also takes the length of the method; This will eventually make method lookup nul-clean.
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index 982ad1437e..70ed11fdb7 100644
--- a/embed.h
+++ b/embed.h
@@ -176,7 +176,9 @@
#define gv_fetchmeth_sv(a,b,c,d) Perl_gv_fetchmeth_sv(aTHX_ a,b,c,d)
#define gv_fetchmeth_sv_autoload(a,b,c,d) Perl_gv_fetchmeth_sv_autoload(aTHX_ a,b,c,d)
#define gv_fetchmethod_autoload(a,b,c) Perl_gv_fetchmethod_autoload(aTHX_ a,b,c)
-#define gv_fetchmethod_flags(a,b,c) Perl_gv_fetchmethod_flags(aTHX_ a,b,c)
+#define gv_fetchmethod_pv_flags(a,b,c) Perl_gv_fetchmethod_pv_flags(aTHX_ a,b,c)
+#define gv_fetchmethod_pvn_flags(a,b,c,d) Perl_gv_fetchmethod_pvn_flags(aTHX_ a,b,c,d)
+#define gv_fetchmethod_sv_flags(a,b,c) Perl_gv_fetchmethod_sv_flags(aTHX_ a,b,c)
#define gv_fetchpv(a,b,c) Perl_gv_fetchpv(aTHX_ a,b,c)
#define gv_fetchpvn_flags(a,b,c,d) Perl_gv_fetchpvn_flags(aTHX_ a,b,c,d)
#define gv_fetchsv(a,b,c) Perl_gv_fetchsv(aTHX_ a,b,c)