summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2002-12-19 18:55:43 +0000
committerhv <hv@crypt.org>2003-01-03 11:05:09 +0000
commit235cc2e3b03f7c8478aa5ccdbe27e0aaf735bb46 (patch)
treeedd08b576231ab95592753390c5dcb39f0338063 /sv.h
parent089197fafbcea8edb9a8f7b55a201115f3f2010a (diff)
downloadperl-235cc2e3b03f7c8478aa5ccdbe27e0aaf735bb46.tar.gz
remove flag SvPADBUSY
Message-ID: <20021219185543.C9530@fdgroup.com> p4raw-id: //depot/perl@18409
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/sv.h b/sv.h
index 393f88f30e..19d8bb3a28 100644
--- a/sv.h
+++ b/sv.h
@@ -148,7 +148,7 @@ perform the upgrade if necessary. See C<svtype>.
#define SvUPGRADE(sv, mt) (SvTYPE(sv) >= mt || sv_upgrade(sv, mt))
-#define SVs_PADBUSY 0x00000100 /* reserved for tmp or my already */
+/* XXX spare */
#define SVs_PADTMP 0x00000200 /* in use as tmp */
#define SVs_PADMY 0x00000400 /* in use a "my" variable */
#define SVs_TEMP 0x00000800 /* string is stealable? */
@@ -637,14 +637,12 @@ and leaves the UTF8 status as it was.
#define SvTHINKFIRST(sv) (SvFLAGS(sv) & SVf_THINKFIRST)
-#define SvPADBUSY(sv) (SvFLAGS(sv) & SVs_PADBUSY)
-
#define SvPADTMP(sv) (SvFLAGS(sv) & SVs_PADTMP)
-#define SvPADTMP_on(sv) (SvFLAGS(sv) |= SVs_PADTMP|SVs_PADBUSY)
+#define SvPADTMP_on(sv) (SvFLAGS(sv) |= SVs_PADTMP)
#define SvPADTMP_off(sv) (SvFLAGS(sv) &= ~SVs_PADTMP)
#define SvPADMY(sv) (SvFLAGS(sv) & SVs_PADMY)
-#define SvPADMY_on(sv) (SvFLAGS(sv) |= SVs_PADMY|SVs_PADBUSY)
+#define SvPADMY_on(sv) (SvFLAGS(sv) |= SVs_PADMY)
#define SvTEMP(sv) (SvFLAGS(sv) & SVs_TEMP)
#define SvTEMP_on(sv) (SvFLAGS(sv) |= SVs_TEMP)