|
@@ -1,5 +1,5 @@
|
|
/*
|
|
/*
|
|
-** $Id: lparser.c,v 2.90 2010/07/07 16:27:29 roberto Exp roberto $
|
|
|
|
|
|
+** $Id: lparser.c,v 2.91 2010/08/23 17:32:34 roberto Exp roberto $
|
|
** Lua Parser
|
|
** Lua Parser
|
|
** See Copyright Notice in lua.h
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
*/
|
|
@@ -289,7 +289,7 @@ static void singlevar (LexState *ls, expdesc *var) {
|
|
FuncState *fs = ls->fs;
|
|
FuncState *fs = ls->fs;
|
|
if (singlevaraux(fs, varname, var, 1) == VVOID) { /* global name? */
|
|
if (singlevaraux(fs, varname, var, 1) == VVOID) { /* global name? */
|
|
expdesc key;
|
|
expdesc key;
|
|
- singlevaraux(fs, ls->envn, var, 1); /* get _ENV variable */
|
|
|
|
|
|
+ singlevaraux(fs, ls->envn, var, 1); /* get environment variable */
|
|
lua_assert(var->k == VLOCAL || var->k == VUPVAL);
|
|
lua_assert(var->k == VLOCAL || var->k == VUPVAL);
|
|
codestring(ls, &key, varname); /* key is variable name */
|
|
codestring(ls, &key, varname); /* key is variable name */
|
|
luaK_indexed(fs, var, &key); /* env[varname] */
|
|
luaK_indexed(fs, var, &key); /* env[varname] */
|
|
@@ -433,14 +433,14 @@ static void close_func (LexState *ls) {
|
|
|
|
|
|
/*
|
|
/*
|
|
** opens the main function, which is a regular vararg function with an
|
|
** opens the main function, which is a regular vararg function with an
|
|
-** upvalue named '_ENV'
|
|
|
|
|
|
+** upvalue named LUA_ENV
|
|
*/
|
|
*/
|
|
static void open_mainfunc (LexState *ls, FuncState *fs) {
|
|
static void open_mainfunc (LexState *ls, FuncState *fs) {
|
|
expdesc v;
|
|
expdesc v;
|
|
open_func(ls, fs);
|
|
open_func(ls, fs);
|
|
fs->f->is_vararg = 1; /* main function is always vararg */
|
|
fs->f->is_vararg = 1; /* main function is always vararg */
|
|
init_exp(&v, VLOCAL, 0);
|
|
init_exp(&v, VLOCAL, 0);
|
|
- newupvalue(fs, ls->envn, &v); /* create '_ENV' upvalue */
|
|
|
|
|
|
+ newupvalue(fs, ls->envn, &v); /* create environment upvalue */
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|