diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-03 23:13:43 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-03 23:13:43 +0000 |
commit | 73d95100627fbb8760df38c23d7563a42cc2b6f6 (patch) | |
tree | 68472e16d74ab36f73e675571379093dc250fe85 /sv.h | |
parent | 7c197c94dc644853d0512a443fd0e99a5f287ad0 (diff) | |
download | perl-73d95100627fbb8760df38c23d7563a42cc2b6f6.tar.gz |
Rename OURSTASH to SvOURSTASH and OURSTASH_set to SvOURSTASH_set.
p4raw-id: //depot/perl@29679
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1206,9 +1206,9 @@ the scalar's value cannot change unless written to. # define SvPAD_STATE_on(sv) (SvFLAGS(sv) |= SVpad_NAME|SVpad_STATE) #endif -#define OURSTASH(sv) \ +#define SvOURSTASH(sv) \ (SvPAD_OUR(sv) ? ((XPVMG*) SvANY(sv))->xmg_u.xmg_ourstash : NULL) -#define OURSTASH_set(sv, st) \ +#define SvOURSTASH_set(sv, st) \ STMT_START { \ assert(SvTYPE(sv) == SVt_PVMG); \ ((XPVMG*) SvANY(sv))->xmg_u.xmg_ourstash = st; \ |