diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-12-04 16:10:22 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-12-04 16:10:22 -0200 |
commit | 531874f6ce9f47f81294beeeba6cd0c15402411c (patch) | |
tree | 9a971f8ac5cb37ba7d09f4aa3a2f3daaecbf7e8b /lobject.h | |
parent | 61a888518f01f8cd34fb2246ccb9c1d65d0257e1 (diff) | |
download | lua-531874f6ce9f47f81294beeeba6cd0c15402411c.tar.gz lua-531874f6ce9f47f81294beeeba6cd0c15402411c.tar.bz2 lua-531874f6ce9f47f81294beeeba6cd0c15402411c.zip |
better (correct?) way to handle `next' over removed keys
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.6 2004/10/06 18:34:16 roberto Exp $ | 2 | ** $Id: lobject.h,v 2.7 2004/11/01 15:06:50 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 | */ |
@@ -25,6 +25,7 @@ | |||
25 | */ | 25 | */ |
26 | #define LUA_TPROTO (NUM_TAGS+1) | 26 | #define LUA_TPROTO (NUM_TAGS+1) |
27 | #define LUA_TUPVAL (NUM_TAGS+2) | 27 | #define LUA_TUPVAL (NUM_TAGS+2) |
28 | #define LUA_TDEADKEY (NUM_TAGS+3) | ||
28 | 29 | ||
29 | 30 | ||
30 | /* | 31 | /* |