aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-10-17 12:12:45 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-10-17 12:12:45 -0200
commitd80659759bcbcabf8b964356e5c9c867cd55effd (patch)
tree0b5df11f98eda46d3d2517402659f0863ef1dcab /lua.h
parentd24253d92f1579032c7a6a30e50bba75ca56d4fe (diff)
downloadlua-d80659759bcbcabf8b964356e5c9c867cd55effd.tar.gz
lua-d80659759bcbcabf8b964356e5c9c867cd55effd.tar.bz2
lua-d80659759bcbcabf8b964356e5c9c867cd55effd.zip
new module luadebug.h.
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index 33620bde..80c50e4c 100644
--- a/lua.h
+++ b/lua.h
@@ -2,7 +2,7 @@
2** LUA - Linguagem para Usuarios de Aplicacao 2** LUA - Linguagem para Usuarios de Aplicacao
3** Grupo de Tecnologia em Computacao Grafica 3** Grupo de Tecnologia em Computacao Grafica
4** TeCGraf - PUC-Rio 4** TeCGraf - PUC-Rio
5** $Id: lua.h,v 3.16 1995/01/27 17:19:06 celes Exp roberto $ 5** $Id: lua.h,v 3.17 1995/10/06 14:11:10 roberto Exp roberto $
6*/ 6*/
7 7
8 8
@@ -24,6 +24,8 @@ typedef enum
24 LUA_T_ARRAY = -4, 24 LUA_T_ARRAY = -4,
25 LUA_T_FUNCTION = -5, 25 LUA_T_FUNCTION = -5,
26 LUA_T_CFUNCTION= -6, 26 LUA_T_CFUNCTION= -6,
27 LUA_T_MARK = -7,
28 LUA_T_CMARK = -8,
27 LUA_T_USERDATA = 0 29 LUA_T_USERDATA = 0
28} lua_Type; 30} lua_Type;
29 31