aboutsummaryrefslogtreecommitdiff
path: root/lvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.h')
-rw-r--r--lvm.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lvm.h b/lvm.h
index 258e2324..911f0e97 100644
--- a/lvm.h
+++ b/lvm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.h,v 2.16 2011/05/31 18:24:36 roberto Exp roberto $ 2** $Id: lvm.h,v 2.17 2011/05/31 18:27:56 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -19,8 +19,7 @@
19 19
20#define equalobj(L,o1,o2) (ttisequal(o1, o2) && luaV_equalobj_(L, o1, o2)) 20#define equalobj(L,o1,o2) (ttisequal(o1, o2) && luaV_equalobj_(L, o1, o2))
21 21
22#define luaV_rawequalobj(t1,t2) \ 22#define luaV_rawequalobj(o1,o2) equalobj(NULL,o1,o2)
23 (ttisequal(t1,t2) && luaV_equalobj_(NULL,t1,t2))
24 23
25 24
26/* not to called directly */ 25/* not to called directly */