summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-09-13 22:02:10 -0600
committerKarl Williamson <khw@cpan.org>2020-09-14 09:33:26 -0600
commit726595978dcd18eb0c7e1e8fae79e60374246eac (patch)
tree7682cbe963fe426789a63ea3915b8440da93ec60 /handy.h
parentb1de2493b5ce238fa84597ffde8bdba7659dbb81 (diff)
downloadperl-726595978dcd18eb0c7e1e8fae79e60374246eac.tar.gz
gv_fetchpvn and gv_fetchpvn_flags are identical
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/handy.h b/handy.h
index 1637f463fe..9b4b25659f 100644
--- a/handy.h
+++ b/handy.h
@@ -461,8 +461,7 @@ Perl_xxx(aTHX_ ...) form for any API calls where it's used.
#define gv_fetchpvs(namebeg, flags, sv_type) \
Perl_gv_fetchpvn_flags(aTHX_ STR_WITH_LEN(namebeg), flags, sv_type)
-#define gv_fetchpvn(namebeg, len, flags, sv_type) \
- Perl_gv_fetchpvn_flags(aTHX_ namebeg, len, flags, sv_type)
+#define gv_fetchpvn gv_fetchpvn_flags
#define sv_catxmlpvs(dsv, str, utf8) \
Perl_sv_catxmlpvn(aTHX_ dsv, STR_WITH_LEN(str), utf8)