This commit is contained in:
Roberto Ierusalimschy
2002-05-20 16:51:06 -03:00
parent f53fd8d5f5
commit 8876a1bf92
2 changed files with 4 additions and 4 deletions

4
ltm.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: ltm.c,v 1.89 2002/04/05 18:54:31 roberto Exp roberto $
** $Id: ltm.c,v 1.90 2002/04/30 13:01:48 roberto Exp roberto $
** Tag methods
** See Copyright Notice in lua.h
*/
@@ -47,7 +47,7 @@ void luaT_init (lua_State *L) {
const TObject *luaT_gettm (Table *events, TMS event, TString *ename) {
const TObject *tm = luaH_getstr(events, ename);
if (ttype(tm) == LUA_TNIL) { /* no tag method? */
events->flags |= (1<<event); /* cache this fact */
events->flags |= (1u<<event); /* cache this fact */
return NULL;
}
else return tm;