diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-02-11 14:52:54 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-02-11 14:52:54 -0200 |
commit | 52aad0ab5937d4df6fe07aedbf9987f2f792698c (patch) | |
tree | 9598361f6d635751fe3eb93c66acd1520f2619af /lobject.h | |
parent | 74f1c3d025c6d8a714454470a953f383a1c6a641 (diff) | |
download | lua-52aad0ab5937d4df6fe07aedbf9987f2f792698c.tar.gz lua-52aad0ab5937d4df6fe07aedbf9987f2f792698c.tar.bz2 lua-52aad0ab5937d4df6fe07aedbf9987f2f792698c.zip |
removing implementation for better error messages (must rethink it...)
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.44 2000/01/25 13:57:18 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.45 2000/01/28 16:53:00 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 | */ |
@@ -81,10 +81,7 @@ typedef enum { | |||
81 | LUA_T_LMARK = -11, /* mark for Lua prototypes */ | 81 | LUA_T_LMARK = -11, /* mark for Lua prototypes */ |
82 | LUA_T_CMARK = -12, /* mark for C prototypes */ | 82 | LUA_T_CMARK = -12, /* mark for C prototypes */ |
83 | 83 | ||
84 | LUA_T_LINE = -13, | 84 | LUA_T_LINE = -13 |
85 | LUA_T_NGLOBAL = -14, | ||
86 | LUA_T_NLOCAL = -15, | ||
87 | LUA_T_NDOT = -16 | ||
88 | } lua_Type; | 85 | } lua_Type; |
89 | 86 | ||
90 | #define NUM_TAGS 7 /* tags for values visible from Lua */ | 87 | #define NUM_TAGS 7 /* tags for values visible from Lua */ |