diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-09-11 11:07:24 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-09-11 11:07:24 -0300 |
commit | a7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7 (patch) | |
tree | f452f26770539293979a3dbd752ee0b38b849123 /ldo.c | |
parent | cedd2092ebe402e0c6d600969ec926496a8a9d22 (diff) | |
download | lua-a7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7.tar.gz lua-a7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7.tar.bz2 lua-a7c9e45c64a4bff9bdaf0d1177509bdd00fc53f7.zip |
avoid trailing white spaces
Diffstat (limited to 'ldo.c')
-rw-r--r-- | ldo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.c,v 2.40 2006/08/15 19:59:20 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 2.41 2006/09/11 12:44:56 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -368,7 +368,7 @@ int luaD_poscall (lua_State *L, StkId firstResult) { | |||
368 | ** The arguments are on the stack, right after the function. | 368 | ** The arguments are on the stack, right after the function. |
369 | ** When returns, all the results are on the stack, starting at the original | 369 | ** When returns, all the results are on the stack, starting at the original |
370 | ** function position. | 370 | ** function position. |
371 | */ | 371 | */ |
372 | void luaD_call (lua_State *L, StkId func, int nResults) { | 372 | void luaD_call (lua_State *L, StkId func, int nResults) { |
373 | global_State *g = G(L); | 373 | global_State *g = G(L); |
374 | lua_assert(g->nCcalls >= L->baseCcalls); | 374 | lua_assert(g->nCcalls >= L->baseCcalls); |