diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-05-05 17:38:12 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-05-05 17:38:12 +0000 |
commit | bc177e6b66d4907a90c81f2862ce55ad78b6496f (patch) | |
tree | c5d5a48ea379b96c206696e7091532a97420284c /intrpvar.h | |
parent | 7c1f70cbf29b1c0cfc4cf8a13260aa01453de093 (diff) | |
download | perl-bc177e6b66d4907a90c81f2862ce55ad78b6496f.tar.gz |
move PL_lex_state into the PL_parser struct
p4raw-id: //depot/perl@31154
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/intrpvar.h b/intrpvar.h index 02fc97efcd..e2c7b1942f 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -285,10 +285,9 @@ PERLVAR(Isv_undef, SV) PERLVAR(Isv_no, SV) PERLVAR(Isv_yes, SV) -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 */ +/* Space for two more U8 here without increasing the structure size */ PERLVAR(Imulti_end, I32) /* last line of multi-line string */ |