From: Bram Moolenaar Date: Mon, 8 Aug 2016 20:34:14 +0000 (+0200) Subject: patch 7.4.2184 X-Git-Tag: v7.4.2184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7a9a5f4019ce332cb11ce5370e3fa609299ce737;p=vim patch 7.4.2184 Problem: Tests that use RunVim() do not actually perform the test. Solution: Use "return" instead of "call". (Ken Takata) --- diff --git a/src/testdir/shared.vim b/src/testdir/shared.vim index aba428a46..edc3c386a 100644 --- a/src/testdir/shared.vim +++ b/src/testdir/shared.vim @@ -130,7 +130,7 @@ endfunc " Plugins are not loaded, unless 'loadplugins' is set in "before". " Return 1 if Vim could be executed. func RunVim(before, after, arguments) - call RunVimPiped(a:before, a:after, a:arguments, '') + return RunVimPiped(a:before, a:after, a:arguments, '') endfunc func RunVimPiped(before, after, arguments, pipecmd) diff --git a/src/version.c b/src/version.c index 23819b198..bb34f29ed 100644 --- a/src/version.c +++ b/src/version.c @@ -763,6 +763,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2184, /**/ 2183, /**/