diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-11-02 16:48:07 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-11-02 16:48:07 -0200 |
commit | ff1289a361eb2b077d0df83eaed21647444541ef (patch) | |
tree | cbbe9372b6a317c06ff1724b36734bdc45df5441 /lgc.c | |
parent | cd73f3ccc5e85bc2b3e45477e2f6e3b705bf3c24 (diff) | |
download | lua-ff1289a361eb2b077d0df83eaed21647444541ef.tar.gz lua-ff1289a361eb2b077d0df83eaed21647444541ef.tar.bz2 lua-ff1289a361eb2b077d0df83eaed21647444541ef.zip |
in 'luaD_call', use two functions instead of one with fixed boolean
argument
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 | ||