summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-25 17:16:24 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-25 17:16:24 +0000
commit5526b5b35ef97d80c7bc2904d09cdc868f6a3c5a (patch)
treef473f91949b65df2fa11e0c0447b9d5d55f1bb43 /sv.h
parent6818a3573a254af22852a6102b2d70b346bae901 (diff)
downloadperl-5526b5b35ef97d80c7bc2904d09cdc868f6a3c5a.tar.gz
GvFLAGS can be overlaid with SvCUR.
p4raw-id: //depot/perl@27330
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sv.h b/sv.h
index 7445c7634e..e5fb2d31ab 100644
--- a/sv.h
+++ b/sv.h
@@ -424,7 +424,6 @@ struct xpvlv {
/* a full glob fits into this */
char* xgv_name;
STRLEN xgv_namelen;
- U8 xgv_flags;
STRLEN xlv_targoff;
STRLEN xlv_targlen;
@@ -438,8 +437,8 @@ struct xpvgv {
NV xnv_nv;
HV * xgv_stash; /* The stash of this GV */
} xnv_u;
- STRLEN xpv_cur; /* length of svu_pv as a C string */
- STRLEN xpv_len; /* allocated size */
+ STRLEN xpv_cur; /* xgv_flags */
+ STRLEN xpv_len; /* 0 */
union {
IV xivu_iv; /* integer value or pv offset */
UV xivu_uv;
@@ -454,7 +453,6 @@ struct xpvgv {
char* xgv_name;
STRLEN xgv_namelen;
- U8 xgv_flags;
};
struct xpvbm {