Change 29496 by [EMAIL PROTECTED] on 2006/12/10 01:13:09

        Swap SVpbm_TAIL and SVpbm_VALID.

Affected files ...

... //depot/perl/sv.h#290 edit

Differences ...

==== //depot/perl/sv.h#290 (text) ====
Index: perl/sv.h
--- perl/sv.h#289~29491~        2006-12-08 15:22:31.000000000 -0800
+++ perl/sv.h   2006-12-09 17:13:09.000000000 -0800
@@ -350,7 +350,7 @@
 /* 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 @@
 /* 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 */
 
End of Patch.

Reply via email to