diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-24 14:19:37 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-24 14:19:37 +0000 |
commit | 2892acdbbc776bf121eaec9d93ea404f7afc54b8 (patch) | |
tree | c3fbfb10ffb7ab31100f465f4c0fa6745c5f069f /sv.h | |
parent | e736a858356e87659136ef1f34af858e253efe45 (diff) | |
download | perl-2892acdbbc776bf121eaec9d93ea404f7afc54b8.tar.gz |
Use PVMGs rather than PVGVs to store the names of our variables in the
pad.
p4raw-id: //depot/perl@27313
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -962,7 +962,7 @@ in gv.h: */ (SvPAD_OUR(sv) ? ((XPVMG*) SvANY(sv))->xmg_u.xmg_ourstash : NULL) #define OURSTASH_set(sv, st) \ STMT_START { \ - assert(SvTYPE(sv) == SVt_PVGV); \ + assert(SvTYPE(sv) == SVt_PVMG); \ ((XPVMG*) SvANY(sv))->xmg_u.xmg_ourstash = st; \ } STMT_END |