aboutsummaryrefslogtreecommitdiff
path: root/lvm.c
diff options
context:
space:
mode:
Diffstat (limited to 'lvm.c')
-rw-r--r--lvm.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/lvm.c b/lvm.c
index 17408082..e5ae82b8 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 2.253 2015/09/17 15:51:05 roberto Exp roberto $ 2** $Id: lvm.c,v 2.254 2015/10/20 17:41:35 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*/
@@ -733,10 +733,9 @@ void luaV_finishOp (lua_State *L) {
733#define Protect(x) { {x;}; base = ci->u.l.base; } 733#define Protect(x) { {x;}; base = ci->u.l.base; }
734 734
735#define checkGC(L,c) \ 735#define checkGC(L,c) \
736 Protect( luaC_condGC(L,{L->top = (c); /* limit of live values */ \ 736 { luaC_condGC(L, L->top = (c), /* limit of live values */ \
737 luaC_step(L); \ 737 Protect(L->top = ci->top)); /* restore top */ \
738 L->top = ci->top;}) /* restore top */ \ 738 luai_threadyield(L); }
739 luai_threadyield(L); )
740 739
741 740
742#define vmdispatch(o) switch(o) 741#define vmdispatch(o) switch(o)