diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-12-10 01:13:09 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-12-10 01:13:09 +0000 |
commit | 5fe1b2e43d7b85573608a94dd98d2a8b7f06d58c (patch) | |
tree | 299224afab59559fad8726ad435737731cc52d82 /sv.h | |
parent | f33706023c3eb682ef01f7bcf16f1afdf33fb00d (diff) | |
download | perl-5fe1b2e43d7b85573608a94dd98d2a8b7f06d58c.tar.gz |
Swap SVpbm_TAIL and SVpbm_VALID.
p4raw-id: //depot/perl@29496
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -350,7 +350,7 @@ perform the upgrade if necessary. See C<svtype>. /* PVHV */ #define SVphv_LAZYDEL 0x40000000 /* entry in xhv_eiter must be deleted */ /* Not just PVBM - basically anything that can be a regular scalar */ -#define SVpbm_TAIL 0x40000000 +#define SVpbm_VALID 0x40000000 /* ??? */ #define SVrepl_EVAL 0x40000000 /* Replacement part of s///e */ @@ -364,7 +364,7 @@ perform the upgrade if necessary. See C<svtype>. /* PVFM */ #define SVpfm_COMPILED 0x80000000 /* FORMLINE is compiled */ /* PVBM */ -#define SVpbm_VALID 0x80000000 +#define SVpbm_TAIL 0x80000000 /* RV upwards. However, SVf_ROK and SVp_IOK are exclusive */ #define SVprv_WEAKREF 0x80000000 /* Weak reference */ |