aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ltm.c4
-rw-r--r--ltm.h3
2 files changed, 3 insertions, 4 deletions
diff --git a/ltm.c b/ltm.c
index 71adbfd4..57c0df28 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 1.76 2001/07/24 22:39:34 roberto Exp roberto $ 2** $Id: ltm.c,v 1.78 2001/08/31 19:46:07 roberto Exp $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -60,7 +60,7 @@ static const lu_byte luaT_validevents[NUM_TAGS][TM_N] = {
60 {1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0} /* LUA_TFUNCTION */ 60 {1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0} /* LUA_TFUNCTION */
61}; 61};
62 62
63int luaT_validevent (int t, int e) { /* ORDER LUA_T */ 63static int luaT_validevent (int t, int e) { /* ORDER LUA_T */
64 return (t >= NUM_TAGS) ? 1 : cast(int, luaT_validevents[t][e]); 64 return (t >= NUM_TAGS) ? 1 : cast(int, luaT_validevents[t][e]);
65} 65}
66 66
diff --git a/ltm.h b/ltm.h
index 5913ead6..36f5fbc1 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 1.26 2001/07/12 18:11:58 roberto Exp roberto $ 2** $Id: ltm.h,v 1.27 2001/08/27 15:13:59 roberto Exp $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -74,7 +74,6 @@ void luaT_init (lua_State *L);
74int luaT_newtag (lua_State *L, const l_char *name, int basictype); 74int luaT_newtag (lua_State *L, const l_char *name, int basictype);
75const l_char *luaT_typename (global_State *G, const TObject *o); 75const l_char *luaT_typename (global_State *G, const TObject *o);
76int luaT_tag (const TObject *o); 76int luaT_tag (const TObject *o);
77int luaT_validevent (int t, int e); /* used by compatibility module */
78 77
79 78
80#endif 79#endif