diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-05-04 00:41:51 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-05-04 00:41:51 +0000 |
commit | 53a7735b62aee14640bc8ca619b4267f07d686b9 (patch) | |
tree | eb7cf7f4d631f6b83cd24d9c98ce0cc2821df29f /intrpvar.h | |
parent | d932daed4961bf485d739adcee3fa2136d8ca8ca (diff) | |
download | perl-53a7735b62aee14640bc8ca619b4267f07d686b9.tar.gz |
move PL_expect and PL_copline into the PL_parser structure
p4raw-id: //depot/perl@31134
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/intrpvar.h b/intrpvar.h index 25e67bd5ed..543acd0688 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -178,7 +178,6 @@ PERLVAR(Ieval_start, OP *) /* runtime control stuff */ PERLVARI(Icurcopdb, COP *, NULL) -PERLVARI(Icopline, line_t, NOLINE) /* statics moved here for shared library purposes */ PERLVARI(Igensym, I32, 0) /* next symbol for getsym() to define */ @@ -305,10 +304,11 @@ PERLVAR(Ioldbufptr, char *) PERLVAR(Ioldoldbufptr, char *) PERLVAR(Ibufend, char *) -PERLVARI(Iexpect, U8, XSTATE) /* how to interpret ambiguous tokens */ PERLVAR(Ilex_state, U8) /* next token is determined */ PERLVAR(Ierror_count, U8) /* how many errors so far, max 10 */ PERLVARI(Icv_has_eval, bool, FALSE) /* PL_compcv includes an entereval or similar */ +/* Space for one more U8 here without increasing the structure size */ + PERLVAR(Imulti_end, I32) /* last line of multi-line string */ PERLVAR(Isubname, SV *) /* name of current subroutine */ @@ -537,8 +537,8 @@ PERLVARI(Islab_count, U32, 0) /* Size of the array */ PERLVARI(Iisarev, HV*, NULL) /* Reverse map of @ISA dependencies */ -/* If you are adding a U16, see the comment above on where there are 2 bytes - of gap which currently will be structure padding. */ +/* If you are adding a U8 or U16, see the 'Space' comments above on where + * there are gaps which currently will be structure padding. */ /* Within a stable branch, new variables must be added to the very end, before * this comment, for binary compatibility (the offsets of the old members must |