aboutsummaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltm.c')
-rw-r--r--ltm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ltm.c b/ltm.c
index 551a2b97..d4e2b447 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 2.68 2018/06/01 17:40:38 roberto Exp roberto $ 2** $Id: ltm.c,v 2.69 2018/06/08 19:06:59 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*/
@@ -69,7 +69,6 @@ const TValue *luaT_gettm (Table *events, TMS event, TString *ename) {
69 69
70 70
71const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) { 71const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) {
72 static const TValue nilobject = {NILCONSTANT};
73 Table *mt; 72 Table *mt;
74 switch (ttype(o)) { 73 switch (ttype(o)) {
75 case LUA_TTABLE: 74 case LUA_TTABLE:
@@ -81,7 +80,7 @@ const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) {
81 default: 80 default:
82 mt = G(L)->mt[ttype(o)]; 81 mt = G(L)->mt[ttype(o)];
83 } 82 }
84 return (mt ? luaH_getshortstr(mt, G(L)->tmname[event]) : &nilobject); 83 return (mt ? luaH_getshortstr(mt, G(L)->tmname[event]) : &G(L)->nilvalue);
85} 84}
86 85
87 86