From: Bram Moolenaar Date: Sun, 17 May 2020 14:53:56 +0000 (+0200) Subject: patch 8.2.0781: compiler warning for not using value in Lua X-Git-Tag: v8.2.0781 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9309eb2f28e6ee346c2a5deaa6f9c2b36578522e;p=vim patch 8.2.0781: compiler warning for not using value in Lua Problem: Compiler warning for not using value in Lua. Solution: Add "(void)". --- diff --git a/src/if_lua.c b/src/if_lua.c index d4cc21f3d..060cb38cd 100644 --- a/src/if_lua.c +++ b/src/if_lua.c @@ -2124,7 +2124,7 @@ luaopen_vim(lua_State *L) luaV_openlib(L, luaV_module, 1); lua_setglobal(L, LUAVIM_NAME); // custom code - luaL_dostring(L, LUA_VIM_FN_CODE); + (void)luaL_dostring(L, LUA_VIM_FN_CODE); return 0; } diff --git a/src/version.c b/src/version.c index 5946964e5..641aa8816 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 781, /**/ 780, /**/