From e2c60eda16d4aff7ea42513ba7c4d33ac45d9e99 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 30 Mar 2000 13:41:51 -0300 Subject: `luaT_validevent' is exported, because compatibility module for fallbacks uses it. --- ltm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltm.c') diff --git a/ltm.c b/ltm.c index 3bf2f1fd..29053d94 100644 --- a/ltm.c +++ b/ltm.c @@ -1,5 +1,5 @@ /* -** $Id: ltm.c,v 1.37 2000/03/27 20:10:21 roberto Exp roberto $ +** $Id: ltm.c,v 1.38 2000/03/29 20:19:20 roberto Exp roberto $ ** Tag methods ** See Copyright Notice in lua.h */ @@ -52,7 +52,7 @@ static const char luaT_validevents[NUM_TAGS][IM_N] = { {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1} /* TAG_NIL */ }; -static int luaT_validevent (int t, int e) { /* ORDER LUA_T */ +int luaT_validevent (int t, int e) { /* ORDER LUA_T */ return (t > TAG_NIL) ? 1 : luaT_validevents[t][e]; } -- cgit v1.2.3-55-g6feb