changeset 6584:d129b939a190 v7.4.618

updated for version 7.4.618 Problem: luaV_setref() is missing a return statement. (Ozaki Kiichi) Solution: Put the return statement back.
author Bram Moolenaar <bram@vim.org>
date Tue, 03 Feb 2015 23:10:46 +0100
parents b0a227941705
children 4f78e9d9dd0d
files src/if_lua.c src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,