aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-05 14:51:58 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-05 14:51:58 -0300
commit22329e4cdf6c6741523099173c31b0a421825a3c (patch)
tree6448d563eaf5d8e6b3d7e792459c04f5ac740ddf /llex.h
parent9f734094f9bbb34216ef555edf08019d5feea13b (diff)
downloadlua-22329e4cdf6c6741523099173c31b0a421825a3c.tar.gz
lua-22329e4cdf6c6741523099173c31b0a421825a3c.tar.bz2
lua-22329e4cdf6c6741523099173c31b0a421825a3c.zip
implementation of BREAK
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 87e6511a..a09da136 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.20 2000/03/10 18:37:44 roberto Exp roberto $ 2** $Id: llex.h,v 1.21 2000/03/24 17:26:08 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*/
@@ -23,7 +23,7 @@
23*/ 23*/
24enum RESERVED { 24enum RESERVED {
25 /* terminal symbols denoted by reserved words */ 25 /* terminal symbols denoted by reserved words */
26 TK_AND = FIRST_RESERVED, 26 TK_AND = FIRST_RESERVED, TK_BREAK,
27 TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FUNCTION, TK_IF, TK_LOCAL, 27 TK_DO, TK_ELSE, TK_ELSEIF, TK_END, TK_FUNCTION, TK_IF, TK_LOCAL,
28 TK_NIL, TK_NOT, TK_OR, TK_REPEAT, TK_RETURN, TK_THEN, TK_UNTIL, TK_WHILE, 28 TK_NIL, TK_NOT, TK_OR, TK_REPEAT, TK_RETURN, TK_THEN, TK_UNTIL, TK_WHILE,
29 /* other terminal symbols */ 29 /* other terminal symbols */