aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-07-22 16:29:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-07-22 16:29:42 -0300
commite9a670695a764408aae2bd970ded7a58d98921c4 (patch)
tree4e6b456f909090fced8aad436b6491601a85bfca /llex.h
parent16024861bd23ac9f837f956fbeec739878e5d895 (diff)
downloadlua-e9a670695a764408aae2bd970ded7a58d98921c4.tar.gz
lua-e9a670695a764408aae2bd970ded7a58d98921c4.tar.bz2
lua-e9a670695a764408aae2bd970ded7a58d98921c4.zip
details
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/llex.h b/llex.h
index 058e3ee0..0b0dd4d9 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.11 1999/02/25 19:13:56 roberto Exp roberto $ 2** $Id: llex.h,v 1.12 1999/06/17 17:04:03 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -16,6 +16,11 @@
16/* maximum length of a reserved word (+1 for terminal 0) */ 16/* maximum length of a reserved word (+1 for terminal 0) */
17#define TOKEN_LEN 15 17#define TOKEN_LEN 15
18 18
19
20/*
21* WARNING: if you change the order of this enumeration,
22* grep "ORDER RESERVED"
23*/
19enum RESERVED { 24enum RESERVED {
20 /* terminal symbols denoted by reserved words */ 25 /* terminal symbols denoted by reserved words */
21 AND = FIRST_RESERVED, 26 AND = FIRST_RESERVED,