From: Nicholas Clark Date: Thu, 3 May 2007 14:45:32 +0000 (+0000) Subject: Move PL_delayedisa into a better spot in the interpreter structure. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b37a2be91b1cd1281f2d8e07198077524e9e18c5;p=p5sagit%2Fp5-mst-13.2.git Move PL_delayedisa into a better spot in the interpreter structure. p4raw-id: //depot/perl@31127 --- diff --git a/thrdvar.h b/thrdvar.h index 3b5bbc1..cbde17d 100644 --- a/thrdvar.h +++ b/thrdvar.h @@ -174,6 +174,8 @@ PERLVAR(Tregmatch_state, regmatch_state *) PERLVARI(Tdumpindent, U16, 4) /* # of blanks per dump indentation level */ +PERLVARI(Tdelayedisa, HV*, NULL) /* stash for PL_delaymagic for magic_setisa */ + /* Put anything new that is pointer aligned here. */ PERLVAR(Tdelaymagic, U16) /* ($<,$>) = ... */ @@ -182,8 +184,10 @@ PERLVAR(Tcolorset, bool) /* from regcomp.c */ PERLVARI(Tdirty, bool, FALSE) /* in the middle of tearing things down? */ PERLVAR(Tin_eval, VOL U8) /* trap "fatal" errors? */ PERLVAR(Ttainted, bool) /* using variables controlled by $< */ -PERLVARI(Tdelayedisa, HV*, NULL) /* stash for PL_delaymagic for magic_setisa */ -/* For historical reasons this file is followed by intrpvar.h in the interpeter - struct. As this file currently ends with 7 bytes of variables, intrpvar.h - starts with one single U8, to avoid structure padding space wastage. */ +/* Put new things UP THERE ^^^ */ + +/* For historical reasons this file is followed by intrpvar.h in the + interpreter struct. As this file currently ends with 7 bytes of variables, + intrpvar.h starts with one single U8, to avoid structure padding space + wastage. */