diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-02-28 14:32:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-02-28 14:32:10 -0300 |
commit | 98816d0ce58db9e817129b076723187d690501df (patch) | |
tree | b8cab039ba8aecb51453206447890c05cb618b34 /lobject.h | |
parent | 7482e8f914fbf198af02c2970cf0aadd80740f92 (diff) | |
download | lua-98816d0ce58db9e817129b076723187d690501df.tar.gz lua-98816d0ce58db9e817129b076723187d690501df.tar.bz2 lua-98816d0ce58db9e817129b076723187d690501df.zip |
small problems with 'luaone.c'
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 |