diff --git a/source/compiler/sc.h b/source/compiler/sc.h index 65a1bfa..a418350 100644 --- a/source/compiler/sc.h +++ b/source/compiler/sc.h @@ -421,10 +421,7 @@ enum { teLOCAL, /* local variable (name or offset) */ teFUNCTN, /* Pawn function */ teNATIVE, /* native function */ - teNONNEG, /* nonnegative integer */ - - tlexLAST = teNONNEG, - + teNONNEG , /* nonnegative integer */ /* for assigment to "lastst" only (see SC1.C) */ tEXPR, tENDLESS, /* endless loop */ diff --git a/source/compiler/sc2.c b/source/compiler/sc2.c index 2ae7943..d30c34f 100644 --- a/source/compiler/sc2.c +++ b/source/compiler/sc2.c @@ -2133,7 +2133,7 @@ SC_FUNC void lexinit(void) _lexnewline=FALSE; } -char *sc_tokens[tlexLAST-tFIRST+1] = { +char *sc_tokens[] = { "*=", "/=", "%=", "+=", "-=", "<<=", ">>>=", ">>=", "&=", "^=", "|=", "||", "&&", "==", "!=", "<=", ">=", "<<", ">>>", ">>", "++", "--", "...", "..",