summaryrefslogtreecommitdiff
path: root/toke.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 /toke.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 'toke.c')
-rw-r--r--toke.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/toke.c b/toke.c
index fe530bcb42..3a3afe5ef5 100644
--- a/toke.c
+++ b/toke.c
@@ -36,20 +36,6 @@ static I32 utf16rev_textfilter(pTHX_ int idx, SV *sv, int maxlen);
#endif
#ifdef PERL_MAD
-/* XXX these probably need to be made into PL vars */
-static I32 PL_realtokenstart;
-static I32 PL_faketokens = 0;
-static MADPROP *PL_thismad;
-static SV *PL_thistoken;
-static SV *PL_thisopen;
-static SV *PL_thisstuff;
-static SV *PL_thisclose;
-static SV *PL_thiswhite;
-static SV *PL_nextwhite;
-static SV *PL_skipwhite;
-static SV *PL_endwhite;
-static I32 PL_curforce = -1;
-
# define CURMAD(slot,sv) if (PL_madskills) { curmad(slot,sv); sv = 0; }
# define NEXTVAL_NEXTTOKE PL_nexttoke[PL_curforce].next_val
#else