summaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-05-20 16:51:06 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-05-20 16:51:06 -0300
commit8876a1bf92bd4b3e2e04eca2aed198a0135d9282 (patch)
treec7e86b5df43e835c7eaef5f0023de5bbd86cc25a /ltm.h
parentf53fd8d5f5f6c06afb191c5f579c75fcf607d52d (diff)
downloadlua-github-8876a1bf92bd4b3e2e04eca2aed198a0135d9282.tar.gz
details
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltm.h b/ltm.h
index eedcc32d..ab6c375a 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
/*
-** $Id: ltm.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
+** $Id: ltm.h,v 1.31 2002/01/09 21:50:35 roberto Exp roberto $
** Tag methods
** See Copyright Notice in lua.h
*/
@@ -35,7 +35,7 @@ typedef enum {
#define fasttm(l,et,e) \
- (((et)->flags & (1<<(e))) ? NULL : luaT_gettm(et, e, G(l)->tmname[e]))
+ (((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, G(l)->tmname[e]))
const TObject *luaT_gettm (Table *events, TMS event, TString *ename);