aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 26b45e3e..b7508b4e 100644
--- a/lua.h
+++ b/lua.h
@@ -80,9 +80,10 @@ typedef struct lua_State lua_State;
80 80
81 81
82/* predefined values in the registry */ 82/* predefined values in the registry */
83#define LUA_RIDX_MAINTHREAD 1 83/* index 1 is reserved for the reference mechanism */
84#define LUA_RIDX_GLOBALS 2 84#define LUA_RIDX_GLOBALS 2
85#define LUA_RIDX_LAST LUA_RIDX_GLOBALS 85#define LUA_RIDX_MAINTHREAD 3
86#define LUA_RIDX_LAST 3
86 87
87 88
88/* type of numbers in Lua */ 89/* type of numbers in Lua */