summaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lvm.c b/lvm.c
index 50d81fa4..c536f74c 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.189 2014/03/14 16:54:08 roberto Exp roberto $ 2** $Id: lvm.c,v 2.190 2014/03/15 12:29:48 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*/
@@ -257,6 +257,8 @@ int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) {
257} 257}
258 258
259 259
260#define tostring(L,o) (ttisstring(o) || (luaV_tostring(L, o)))
261
260void luaV_concat (lua_State *L, int total) { 262void luaV_concat (lua_State *L, int total) {
261 lua_assert(total >= 2); 263 lua_assert(total >= 2);
262 do { 264 do {