summaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltm.h b/ltm.h
index 4c56a093..d40bf6c5 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 1.40 2002/09/19 20:12:47 roberto Exp roberto $ 2** $Id: ltm.h,v 1.41 2002/11/14 11:51:50 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -36,8 +36,8 @@ typedef enum {
36 36
37 37
38 38
39#define gfasttm(g,et,e) \ 39#define gfasttm(g,et,e) ((et) == NULL ? NULL : \
40 (((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, (g)->tmname[e])) 40 ((et)->flags & (1u<<(e))) ? NULL : luaT_gettm(et, e, (g)->tmname[e]))
41 41
42#define fasttm(l,et,e) gfasttm(G(l), et, e) 42#define fasttm(l,et,e) gfasttm(G(l), et, e)
43 43