diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.45 2010/12/10 14:53:15 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.46 2011/01/07 15:46:27 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -23,6 +23,11 @@ | |||
23 | #define LUA_TUPVAL (LUA_NUMTAGS+1) | 23 | #define LUA_TUPVAL (LUA_NUMTAGS+1) |
24 | #define LUA_TDEADKEY (LUA_NUMTAGS+2) | 24 | #define LUA_TDEADKEY (LUA_NUMTAGS+2) |
25 | 25 | ||
26 | /* | ||
27 | ** number of all possible tags (including LUA_TNONE but excluding DEADKEY) | ||
28 | */ | ||
29 | #define LUA_TOTALTAGS (LUA_TUPVAL+2) | ||
30 | |||
26 | 31 | ||
27 | /* | 32 | /* |
28 | ** Variant tag for light C functions (negative to be considered | 33 | ** Variant tag for light C functions (negative to be considered |