]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.4.618 v7.4.618
authorBram Moolenaar <Bram@vim.org>
Tue, 3 Feb 2015 22:10:46 +0000 (23:10 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 3 Feb 2015 22:10:46 +0000 (23:10 +0100)
Problem:    luaV_setref() is missing a return statement. (Ozaki Kiichi)
Solution:   Put the return statement back.

src/if_lua.c
src/version.c

index 148d624203084c954230de740cfd645b35959382..b4789c449e89198b0c628c10344fe171402de993 100644 (file)
@@ -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
index 138a29ab56b210513b495703845a9243fd0fce8b..791d007b7b65d7cf5f7b21edf36d9e485e67c423 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    618,
 /**/
     617,
 /**/