no more reserved word "global"

This commit is contained in:
Roberto Ierusalimschy
2002-09-03 08:57:38 -03:00
parent 7c0ccdfd61
commit b2bc3b44b6
2 changed files with 4 additions and 4 deletions

4
llex.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: llex.c,v 1.108 2002/07/10 20:43:53 roberto Exp roberto $
** $Id: llex.c,v 1.109 2002/08/16 14:45:55 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
@@ -27,7 +27,7 @@
/* ORDER RESERVED */
static const char *const token2string [] = {
"and", "break", "do", "else", "elseif",
"end", "false", "for", "function", "global", "if",
"end", "false", "for", "function", "if",
"in", "local", "nil", "not", "or", "repeat",
"return", "then", "true", "until", "while", "*name",
"..", "...", "==", ">=", "<=", "~=",