diff options
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
798 | static void dothecall (lua_State *L, void *ud) { | 798 | static 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 | ||