0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.4.278

Problem:    list_remove() conflicts with function defined in Sun header file.
Solution:   Rename the function. (Richard Palo)
This commit is contained in:
Bram Moolenaar
2014-05-07 17:31:37 +02:00
parent 0d3d5e0483
commit 3ec7f4e402
5 changed files with 12 additions and 8 deletions

View File

@@ -734,7 +734,7 @@ luaV_list_newindex (lua_State *L)
if (li == NULL) return 0;
if (lua_isnil(L, 3)) /* remove? */
{
list_remove(l, li, li);
vimlist_remove(l, li, li);
clear_tv(&li->li_tv);
vim_free(li);
}