Skip to content

Commit

Permalink
Swap SVpbm_TAIL and SVpbm_VALID.
Browse files Browse the repository at this point in the history
p4raw-id: //depot/perl@29496
  • Loading branch information
nwc10 committed Dec 10, 2006
1 parent f337060 commit 5fe1b2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sv.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand All @@ -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 */

Expand Down

0 comments on commit 5fe1b2e

Please sign in to comment.