diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-09-19 15:59:44 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-09-19 15:59:44 +0000 |
commit | ffd4ff43bd2a65a31e5f3808320b98b9851ba91e (patch) | |
tree | 6199f638ef765cba50c231c823b5d0dc742d5d42 /ext | |
parent | 703fb0e2f700da68ca7ae50aa325f18bc3eb54a8 (diff) | |
download | perl-ffd4ff43bd2a65a31e5f3808320b98b9851ba91e.tar.gz |
All Perl_hv_name_set()s need to be plain hv_name_set if they are to
work with a macro version.
p4raw-id: //depot/perl@25493
Diffstat (limited to 'ext')
-rw-r--r-- | ext/ByteLoader/bytecode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ByteLoader/bytecode.h b/ext/ByteLoader/bytecode.h index 99ffd7f22d..b6bb12d036 100644 --- a/ext/ByteLoader/bytecode.h +++ b/ext/ByteLoader/bytecode.h @@ -347,7 +347,7 @@ typedef char *pvindex; mg_set(*hv_store(GvHV(gv_fetchpv("SIG", TRUE, SVt_PVHV)), \ name, strlen(name), cv, 0)) -#define BSET_xhv_name(hv, name) Perl_hv_name_set(aTHX_ (HV*)hv, name, strlen(name), 0) +#define BSET_xhv_name(hv, name) hv_name_set((HV*)hv, name, strlen(name), 0) /* NOTE: the bytecode header only sanity-checks the bytecode. If a script cares about * what version of Perl it's being called under, it should do a 'use 5.006_001' or |