summaryrefslogtreecommitdiff
path: root/thrdvar.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-05-03 14:45:32 +0000
committerNicholas Clark <nick@ccl4.org>2007-05-03 14:45:32 +0000
commitb37a2be91b1cd1281f2d8e07198077524e9e18c5 (patch)
treec6b78f9f5a0bd9dd7d18e1062de31f0d29a684ab /thrdvar.h
parentdd0f7162a7fbc454dca3f1a1c117123150d54b79 (diff)
downloadperl-b37a2be91b1cd1281f2d8e07198077524e9e18c5.tar.gz
Move PL_delayedisa into a better spot in the interpreter structure.
p4raw-id: //depot/perl@31127
Diffstat (limited to 'thrdvar.h')
-rw-r--r--thrdvar.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/thrdvar.h b/thrdvar.h
index 3b5bbc10e9..cbde17dc74 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. */