summaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.c b/lgc.c
index 837b1cc3..47aa05e2 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 2.207 2015/09/08 15:41:05 roberto Exp roberto $ 2** $Id: lgc.c,v 2.208 2015/11/02 16:19:29 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -797,7 +797,7 @@ static GCObject *udata2finalize (global_State *g) {
797 797
798static void dothecall (lua_State *L, void *ud) { 798static void dothecall (lua_State *L, void *ud) {
799 UNUSED(ud); 799 UNUSED(ud);
800 luaD_call(L, L->top - 2, 0, 0); 800 luaD_callnoyield(L, L->top - 2, 0);
801} 801}
802 802
803 803