update to lua 5.3.4

This commit is contained in:
Cloud Wu
2017-01-03 10:44:39 +08:00
parent f10793e99b
commit 2dbb0129d3
27 changed files with 446 additions and 365 deletions

View File

@@ -1012,7 +1012,7 @@ LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data,
return status;
}
void cloneproto (lua_State *L, Proto *f, const Proto *src) {
static void cloneproto (lua_State *L, Proto *f, const Proto *src) {
/* copy constants and nested proto */
int i,n;
n = src->sp->sizek;