diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-10-03 16:21:59 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-10-03 16:21:59 +0000 |
commit | c3c974a67f0c45348e2d8d31bc20ceb1672d9fa5 (patch) | |
tree | b9311dabd5d1ca345f31d0a5d699e0fc6cdb5c29 /intrpvar.h | |
parent | c8ae91a8d996e65182b5522ff8f511a834fac9c1 (diff) | |
download | perl-c3c974a67f0c45348e2d8d31bc20ceb1672d9fa5.tar.gz |
Reverse change #31978
p4raw-link: @31978 on //depot/perl: d804f4346b490171e547d5cc512063e53da10708
p4raw-id: //depot/perl@32015
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/intrpvar.h b/intrpvar.h index 0c7659acef..a6a4a1c641 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -162,13 +162,7 @@ PERLVAR(Iregdummy, regnode) /* from regcomp.c */ PERLVARI(Idumpindent, U16, 4) /* number of blanks per dump indentation level */ -PERLVARI(Iv_string_ok, bool, FALSE) /* use/require v_string OK */ - -/* This would be space for U8 here without increasing the structure size - so name the space, so that the first post 5.10 need for a bool can use this - rather than padding at the end. */ - -PERLVARI(Ispare_510, bool, FALSE) /* */ +/* Space for U16 here without increasing the structure size */ PERLVARA(Icolors,6, char *) /* from regcomp.c */ @@ -674,7 +668,7 @@ PERLVARI(Islabs, I32**, NULL) /* Array of slabs that have been allocated */ PERLVARI(Islab_count, U32, 0) /* Size of the array */ #endif -PERLVARI(Iisarev, HV*, NULL) /* Reverse map of @ISA dependencies */ +PERLVARI(Iisarev, HV*, NULL) /* Reverse map of @ISA dependencies */ /* If you are adding a U8 or U16, see the 'Space' comments above on where * there are gaps which currently will be structure padding. */ |