From: Steve Peters Date: Fri, 10 Mar 2006 02:17:43 +0000 (+0000) Subject: Move PL_lasttoke out of its PERL_MAD define in intrpvar.h. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3aa8debafcfefd4c2cb400005adeddfb0c904d0a;p=p5sagit%2Fp5-mst-13.2.git Move PL_lasttoke out of its PERL_MAD define in intrpvar.h. Otherwise, Win32 does not compile. p4raw-id: //depot/perl@27457 --- diff --git a/intrpvar.h b/intrpvar.h index 6cdf894..7f947a3 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -300,8 +300,8 @@ PERLVAR(Ilex_casestack, char *) /* what kind of case mods in effect */ /* What we know when we're in LEX_KNOWNEXT state. */ #ifdef PERL_MAD PERLVARA(Inexttoke,5, NEXTTOKE) /* value of next token, if any */ -PERLVAR(Ilasttoke, I32) #else +PERLVAR(Ilasttoke, I32) PERLVARA(Inextval,5, YYSTYPE) /* value of next token, if any */ PERLVARA(Inexttype,5, I32) /* type of next token */ PERLVAR(Inexttoke, I32)