This commit is contained in:
Roberto Ierusalimschy
1998-03-11 10:59:50 -03:00
parent 0969a971cd
commit 99cc4b20f2
3 changed files with 9 additions and 9 deletions

4
ltm.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: ltm.c,v 1.13 1998/01/02 17:46:32 roberto Exp roberto $
** $Id: ltm.c,v 1.14 1998/03/09 21:49:52 roberto Exp roberto $
** Tag methods
** See Copyright Notice in lua.h
*/
@@ -148,7 +148,7 @@ void luaT_settagmethod (int t, char *event, TObject *func)
int e = luaI_checkevent(event, luaT_eventname);
checktag(t);
if (!validevent(t, e))
luaL_verror("settagmethod: cannot change internal method `%.20s' for tag %d",
luaL_verror("settagmethod: cannot change tag method `%.20s' for tag %d",
luaT_eventname[e], t);
*func = *luaT_getim(t,e);
*luaT_getim(t, e) = temp;