aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-11-02 16:48:07 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-11-02 16:48:07 -0200
commitff1289a361eb2b077d0df83eaed21647444541ef (patch)
treecbbe9372b6a317c06ff1724b36734bdc45df5441 /lgc.c
parentcd73f3ccc5e85bc2b3e45477e2f6e3b705bf3c24 (diff)
downloadlua-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.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