summaryrefslogtreecommitdiff
path: root/lapi.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-03-10 14:14:37 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-03-10 14:14:37 -0300
commitba484b9eb16dd62a7c3a5400a66eb952b654d3f0 (patch)
tree31692ddf85265e5a46eab0cd55a0b0757a225e68 /lapi.h
parentf9d015523ef48266cea37e13717c223c16941b23 (diff)
downloadlua-github-ba484b9eb16dd62a7c3a5400a66eb952b654d3f0.tar.gz
yielding across lua_call (first version)
Diffstat (limited to 'lapi.h')
-rw-r--r--lapi.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lapi.h b/lapi.h
index b9ca73bf..82ff87c6 100644
--- a/lapi.h
+++ b/lapi.h
@@ -1,5 +1,5 @@
/*
-** $Id: lapi.h,v 2.2 2005/04/25 19:24:10 roberto Exp roberto $
+** $Id: lapi.h,v 2.3 2006/07/11 15:53:29 roberto Exp roberto $
** Auxiliary functions from Lua API
** See Copyright Notice in lua.h
*/
@@ -13,4 +13,8 @@
#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top);}
+#define adjustresults(L,nres) \
+ { if ((nres) == LUA_MULTRET && L->top >= L->ci->top) L->ci->top = L->top; }
+
+
#endif