diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-02-22 16:23:36 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-02-22 16:23:36 -0300 |
commit | e3a02e6a9ce0714bf51d20c94b54302bf9939dd8 (patch) | |
tree | 4af95174626c10cb37f5e0620686b76a209ab040 /ldo.c | |
parent | d5feffdb607e4376bcea32c3642131962aa6857f (diff) | |
download | lua-github-e3a02e6a9ce0714bf51d20c94b54302bf9939dd8.tar.gz |
comments
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 1.33 1999/02/22 13:51:44 roberto Exp roberto $ +** $Id: ldo.c,v 1.34 1999/02/22 14:17:24 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -265,9 +265,9 @@ static void do_callinc (int nResults) { StkId base = L->Cstack.base; luaD_call(base+1, nResults); - L->Cstack.lua2C = base; /* position of the luaM_new results */ + L->Cstack.lua2C = base; /* position of the new results */ L->Cstack.num = (L->stack.top-L->stack.stack) - base; /* number of results */ - L->Cstack.base = base + L->Cstack.num; /* incorporate results on L->stack.stack */ + L->Cstack.base = base + L->Cstack.num; /* incorporate results on stack */ } |