summaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-03-07 13:26:01 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-03-07 13:26:01 -0300
commit6480e735998a1dc738d8babc86af154babb3843c (patch)
tree42de57db4962a90aa9376ab869a6f1dab3326e75 /ldo.c
parent4a1612ff9b968fe446bc4dd20460bfaccabeb3b3 (diff)
downloadlua-github-6480e735998a1dc738d8babc86af154babb3843c.tar.gz
details (avoid using non-C89 '//' comment)
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 4126f47b..20f36450 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
/*
-** $Id: ldo.c,v 2.197 2018/02/26 14:16:05 roberto Exp roberto $
+** $Id: ldo.c,v 2.198 2018/03/05 14:13:55 roberto Exp roberto $
** Stack and Call structure of Lua
** See Copyright Notice in lua.h
*/
@@ -687,7 +687,6 @@ LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs,
: cast_int(L->top - (L->ci->func + 1));
L->nny = oldnny; /* restore 'nny' */
L->nCcalls--;
- // lua_assert(L->nCcalls == ((from) ? from->nCcalls : 0));
lua_unlock(L);
return status;
}