summaryrefslogtreecommitdiff
path: root/ltm.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-01-10 10:50:00 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-01-10 10:50:00 -0200
commitdd1221582bc7c0c2ec508b5bad4086f8801b61a8 (patch)
tree36c896b2dc704cc28edc59c92b83f00319e4e9ea /ltm.c
parentbfdcbbcd76c7187022fe2d35675de0b1c92eeadf (diff)
downloadlua-dd1221582bc7c0c2ec508b5bad4086f8801b61a8.tar.gz
lua-dd1221582bc7c0c2ec508b5bad4086f8801b61a8.tar.bz2
lua-dd1221582bc7c0c2ec508b5bad4086f8801b61a8.zip
details
Diffstat (limited to 'ltm.c')
-rw-r--r--ltm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltm.c b/ltm.c
index 04773840..3b4715dd 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 2.6 2005/05/20 15:53:42 roberto Exp roberto $ 2** $Id: ltm.c,v 2.7 2005/12/22 16:19:56 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*/
@@ -70,6 +70,6 @@ const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) {
70 default: 70 default:
71 mt = G(L)->mt[ttype(o)]; 71 mt = G(L)->mt[ttype(o)];
72 } 72 }
73 return (mt ? luaH_getstr(mt, G(L)->tmname[event]) : &luaO_nilobject); 73 return (mt ? luaH_getstr(mt, G(L)->tmname[event]) : luaO_nilobject);
74} 74}
75 75