0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.3.820

Problem:    Build errors and warnings when building with small features and
            Lua, Perl or Ruby.
Solution:   Add #ifdefs and UNUSED.
This commit is contained in:
Bram Moolenaar
2013-02-14 22:19:51 +01:00
parent b2c5a5ac79
commit feeaa688eb
4 changed files with 15 additions and 9 deletions

View File

@@ -845,8 +845,9 @@ luaV_dict_len (lua_State *L)
}
static int
luaV_dict_iter (lua_State *L)
luaV_dict_iter (lua_State *L UNUSED)
{
#ifdef FEAT_EVAL
hashitem_T *hi = (hashitem_T *) lua_touserdata(L, lua_upvalueindex(2));
int n = lua_tointeger(L, lua_upvalueindex(3));
dictitem_T *di;
@@ -860,6 +861,9 @@ luaV_dict_iter (lua_State *L)
lua_pushinteger(L, n - 1);
lua_replace(L, lua_upvalueindex(3));
return 2;
#else
return 0;
#endif
}
static int