# HG changeset patch # User Bram Moolenaar # Date 1423001446 -3600 # Node ID d129b939a19065a0a5302077d2a9737ed2dc0bf0 # Parent b0a2279417055cd1f92a5adf1c5a6dba4029fa76 updated for version 7.4.618 Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi) Solution: Put the return statement back. diff --git a/src/if_lua.c b/src/if_lua.c --- a/src/if_lua.c +++ b/src/if_lua.c @@ -1547,6 +1547,7 @@ luaV_setref (lua_State *L) abort = set_ref_in_item(&tv, copyID, NULL, NULL); } lua_pushinteger(L, abort); + return 0; } static int diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 618, +/**/ 617, /**/ 616,