From 6abde1b05a3e7eeb45fc9c0bb77dc660a01497a5 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 5 Apr 2010 13:35:37 -0300 Subject: no need to keep "_ENV" name in global state (can be kept in lex state) --- lstate.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index caaa70ec..1c70aca8 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.58 2010/03/26 20:58:11 roberto Exp roberto $ +** $Id: lstate.h,v 2.59 2010/03/29 17:43:14 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -142,7 +142,6 @@ typedef struct global_State { lua_CFunction panic; /* to be called in unprotected errors */ struct lua_State *mainthread; const lua_Number *version; /* pointer to version number */ - TString *envn; /* environment variable name */ TString *tmname[TM_N]; /* array with tag-method names */ struct Table *mt[NUM_TAGS]; /* metatables for basic types */ } global_State; -- cgit v1.2.3-55-g6feb