diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-02 13:43:54 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-10-02 13:43:54 -0300 |
| commit | 6f936bc7931662d0460d47ad73eca308ba5fab2f (patch) | |
| tree | 7e70a38b41bcd9556f2420b17a64df5e30cb9b6d /ltm.c | |
| parent | b840a7518df607d2a1024c33dc2cc2022054d40a (diff) | |
| download | lua-6f936bc7931662d0460d47ad73eca308ba5fab2f.tar.gz lua-6f936bc7931662d0460d47ad73eca308ba5fab2f.tar.bz2 lua-6f936bc7931662d0460d47ad73eca308ba5fab2f.zip | |
"compatibility module" no longer exists
Diffstat (limited to '')
| -rw-r--r-- | ltm.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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 | ||
| 63 | int luaT_validevent (int t, int e) { /* ORDER LUA_T */ | 63 | static 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 | ||
