From 74f1c3d025c6d8a714454470a953f383a1c6a641 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 8 Feb 2000 14:39:42 -0200 Subject: small changes for "clean C" --- llex.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'llex.h') diff --git a/llex.h b/llex.h index 918b4125..8b11cd64 100644 --- a/llex.h +++ b/llex.h @@ -1,5 +1,5 @@ /* -** $Id: llex.h,v 1.16 1999/12/27 17:33:22 roberto Exp roberto $ +** $Id: llex.h,v 1.17 2000/01/25 18:44:21 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -27,7 +27,10 @@ enum RESERVED { DO, ELSE, ELSEIF, END, FUNCTION, IF, LOCAL, NIL, NOT, OR, REPEAT, RETURN, THEN, UNTIL, WHILE, /* other terminal symbols */ - NAME, CONC, DOTS, EQ, GE, LE, NE, NUMBER, STRING, EOS}; + NAME, CONC, DOTS, EQ, GE, LE, NE, NUMBER, STRING, EOS +}; + +#define NUM_RESERVED (WHILE-FIRST_RESERVED+1) /* number of reserved words */ #ifndef MAX_IFS -- cgit v1.2.3-55-g6feb