diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-09-03 08:57:38 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-09-03 08:57:38 -0300 |
commit | b2bc3b44b6bdf5efd783a50c28e108ac3bcba9fd (patch) | |
tree | 978fe5aac4410c564d28fc0eaa0625c24a73fee0 /llex.c | |
parent | 7c0ccdfd61f1611ff0f5f6899a7679916686fc65 (diff) | |
download | lua-b2bc3b44b6bdf5efd783a50c28e108ac3bcba9fd.tar.gz lua-b2bc3b44b6bdf5efd783a50c28e108ac3bcba9fd.tar.bz2 lua-b2bc3b44b6bdf5efd783a50c28e108ac3bcba9fd.zip |
no more reserved word "global"
Diffstat (limited to 'llex.c')
-rw-r--r-- | llex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.108 2002/07/10 20:43:53 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 1.109 2002/08/16 14:45:55 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 | */ |
@@ -27,7 +27,7 @@ | |||
27 | /* ORDER RESERVED */ | 27 | /* ORDER RESERVED */ |
28 | static const char *const token2string [] = { | 28 | static const char *const token2string [] = { |
29 | "and", "break", "do", "else", "elseif", | 29 | "and", "break", "do", "else", "elseif", |
30 | "end", "false", "for", "function", "global", "if", | 30 | "end", "false", "for", "function", "if", |
31 | "in", "local", "nil", "not", "or", "repeat", | 31 | "in", "local", "nil", "not", "or", "repeat", |
32 | "return", "then", "true", "until", "while", "*name", | 32 | "return", "then", "true", "until", "while", "*name", |
33 | "..", "...", "==", ">=", "<=", "~=", | 33 | "..", "...", "==", ">=", "<=", "~=", |