From c7a8cba74512a16aa01a99f2cdf395b358ada2fc Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 15 Feb 2018 16:06:24 -0200 Subject: no more 'nfield' string --- lstate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index 2cce8e4f..65229491 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.153 2017/12/19 16:40:17 roberto Exp roberto $ +** $Id: lstate.h,v 2.154 2018/02/09 15:16:06 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -176,7 +176,7 @@ 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 *nfield; /* string "n" (key in vararg tables) */ + TString *memerrmsg; /* message for memory-allocation errors */ TString *tmname[TM_N]; /* array with tag-method names */ struct Table *mt[LUA_NUMTAGS]; /* metatables for basic types */ TString *strcache[STRCACHE_N][STRCACHE_M]; /* cache for strings in API */ -- cgit v1.2.3-55-g6feb