aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/ltm.h b/ltm.h
index bad12fa9..4b52fe94 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ 2** $Id: ltm.h,v 1.2 1997/11/04 15:27:53 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*/
@@ -9,6 +9,7 @@
9 9
10 10
11#include "lobject.h" 11#include "lobject.h"
12#include "lstate.h"
12 13
13/* 14/*
14* WARNING: if you change the order of this enumeration, 15* WARNING: if you change the order of this enumeration,
@@ -38,12 +39,12 @@ typedef enum {
38#define IM_N 18 39#define IM_N 18
39 40
40 41
41extern struct IM { 42struct IM {
42 TObject int_method[IM_N]; 43 TObject int_method[IM_N];
43} *luaT_IMtable; 44};
44 45
45 46
46#define luaT_getim(tag,event) (&luaT_IMtable[-(tag)].int_method[event]) 47#define luaT_getim(tag,event) (&L->IMtable[-(tag)].int_method[event])
47#define luaT_getimbyObj(o,e) (luaT_getim(luaT_efectivetag(o),(e))) 48#define luaT_getimbyObj(o,e) (luaT_getim(luaT_efectivetag(o),(e)))
48 49
49extern char *luaT_eventname[]; 50extern char *luaT_eventname[];