summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-01-03 23:13:43 +0000
committerNicholas Clark <nick@ccl4.org>2007-01-03 23:13:43 +0000
commit73d95100627fbb8760df38c23d7563a42cc2b6f6 (patch)
tree68472e16d74ab36f73e675571379093dc250fe85 /sv.h
parent7c197c94dc644853d0512a443fd0e99a5f287ad0 (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.h b/sv.h
index f3ac3e80db..b2cc8f4066 100644
--- a/sv.h
+++ b/sv.h
@@ -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; \