diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-10 21:54:18 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-10 21:54:18 +0000 |
commit | 5336380d3e98d40ceb0f5b533b012f0e4cd65847 (patch) | |
tree | d4ad983e1657963728b2ee18ac4112c62f92060e /perl.c | |
parent | cd81e91502ad4d6bb904961b23b1a3ff2fa664af (diff) | |
download | perl-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.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -389,6 +389,10 @@ perl_construct(pTHXx) PL_timesbase.tms_cstime = 0; #endif +#ifdef PERL_MAD + PL_curforce = -1; +#endif + ENTER; } |