diff options
author | Steve Peters <steve@fisharerojo.org> | 2006-03-10 02:17:43 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-03-10 02:17:43 +0000 |
commit | 3aa8debafcfefd4c2cb400005adeddfb0c904d0a (patch) | |
tree | bdd86eaa4bb570ae7df2b754710dd5e6a5fa000f /intrpvar.h | |
parent | 6fd99bb377a3671d990fd357b52cfe5b19de1e9c (diff) | |
download | perl-3aa8debafcfefd4c2cb400005adeddfb0c904d0a.tar.gz |
Move PL_lasttoke out of its PERL_MAD define in intrpvar.h.
Otherwise, Win32 does not compile.
p4raw-id: //depot/perl@27457
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 6cdf894df5..7f947a34d8 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) |