diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-05-12 22:17:40 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-05-12 22:17:40 +0000 |
commit | 12bd6ede29d13c215438daf78d15695e487886b0 (patch) | |
tree | 78ba457776b01252a85ffb3957bce4289c26f607 /intrpvar.h | |
parent | 5afb0a623b9b99b8da0168b2f2a3030d9165d7ff (diff) | |
download | perl-12bd6ede29d13c215438daf78d15695e487886b0.tar.gz |
move PL_in_my and PL_in_my_stash into the PL_parser struct
p4raw-id: //depot/perl@31203
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/intrpvar.h b/intrpvar.h index fbbe64f535..2bb2f88201 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -189,7 +189,6 @@ PERLVAR(Imess_sv, SV *) PERLVAR(Iors_sv, SV *) /* output record separator $\ */ /* statics moved here for shared library purposes */ PERLVARI(Igensym, I32, 0) /* next symbol for getsym() to define */ -PERLVAR(Iin_my, U16) /* we're compiling a "my" (or "our") declaration */ PERLVARI(Ilaststype, U16, OP_STAT) PERLVARI(Ilaststatval, int, -1) @@ -300,8 +299,6 @@ PERLVAR(Ipadix, I32) /* max used index in current "register" pad */ PERLVAR(Ipadix_floor, I32) /* how low may inner block reset padix */ PERLVAR(Ipad_reset_pending, I32) /* reset pad on next attempted alloc */ -PERLVAR(Iin_my_stash, HV *) /* declared class of this "my" declaration */ - PERLVAR(Ihints, U32) /* pragma-tic compile-time flags */ PERLVAR(Idebug, VOL U32) /* flags given to -D switch */ |