From 82a1f5d35462f26269b22ad72ef771e870c1417d Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 29 Mar 2010 14:44:31 -0300 Subject: comments --- lauxlib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lauxlib.c') diff --git a/lauxlib.c b/lauxlib.c index 2efbbf74..3a937512 100644 --- a/lauxlib.c +++ b/lauxlib.c @@ -1,5 +1,5 @@ /* -** $Id: lauxlib.c,v 1.204 2010/03/19 21:04:17 roberto Exp roberto $ +** $Id: lauxlib.c,v 1.205 2010/03/22 17:28:31 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ @@ -789,9 +789,9 @@ LUALIB_API int luaL_cpcall (lua_State *L, lua_CFunction f, int nargs, int nresults) { nargs++; /* to include function itself */ lua_rawgeti(L, LUA_REGISTRYINDEX, LUA_RIDX_CCALL); - lua_insert(L, -nargs); + lua_insert(L, -nargs); /* 'ccall' is real function to be called */ lua_pushlightuserdata(L, &f); - lua_insert(L, -nargs); + lua_insert(L, -nargs); /* 'f' address is its first argument */ return lua_pcall(L, nargs, nresults, 0); } -- cgit v1.2.3-55-g6feb