Change 27457 by [EMAIL PROTECTED] on 2006/03/10 02:17:43
Move PL_lasttoke out of its PERL_MAD define in intrpvar.h.
Otherwise, Win32 does not compile.
Affected files ...
... //depot/perl/intrpvar.h#180 edit
Differences ...
==== //depot/perl/intrpvar.h#180 (text) ====
Index: perl/intrpvar.h
--- perl/intrpvar.h#179~27445~ 2006-03-09 11:22:10.000000000 -0800
+++ perl/intrpvar.h 2006-03-09 18:17:43.000000000 -0800
@@ -300,8 +300,8 @@
/* 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)
End of Patch.