summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-03-10 21:54:18 +0000
committerNicholas Clark <nick@ccl4.org>2006-03-10 21:54:18 +0000
commit5336380d3e98d40ceb0f5b533b012f0e4cd65847 (patch)
treed4ad983e1657963728b2ee18ac4112c62f92060e /perl.c
parentcd81e91502ad4d6bb904961b23b1a3ff2fa664af (diff)
downloadperl-5336380d3e98d40ceb0f5b533b012f0e4cd65847.tar.gz
Move the 12 static MAD variables from toke.c into the interpeter
structure. p4raw-id: //depot/perl@27466
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl.c b/perl.c
index c152a39689..2ffbb176fc 100644
--- a/perl.c
+++ b/perl.c
@@ -389,6 +389,10 @@ perl_construct(pTHXx)
PL_timesbase.tms_cstime = 0;
#endif
+#ifdef PERL_MAD
+ PL_curforce = -1;
+#endif
+
ENTER;
}