This commit is contained in:
Roberto Ierusalimschy
2013-01-08 12:06:55 -02:00
parent eecc1491f3
commit 0730a56d38
2 changed files with 4 additions and 5 deletions

5
lvm.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lvm.h,v 2.16 2011/05/31 18:24:36 roberto Exp roberto $
** $Id: lvm.h,v 2.17 2011/05/31 18:27:56 roberto Exp roberto $
** Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -19,8 +19,7 @@
#define equalobj(L,o1,o2) (ttisequal(o1, o2) && luaV_equalobj_(L, o1, o2))
#define luaV_rawequalobj(t1,t2) \
(ttisequal(t1,t2) && luaV_equalobj_(NULL,t1,t2))
#define luaV_rawequalobj(o1,o2) equalobj(NULL,o1,o2)
/* not to called directly */