forked from aniani/vim
patch 7.4.2184
Problem: Tests that use RunVim() do not actually perform the test. Solution: Use "return" instead of "call". (Ken Takata)
This commit is contained in:
@@ -130,7 +130,7 @@ endfunc
|
|||||||
" Plugins are not loaded, unless 'loadplugins' is set in "before".
|
" Plugins are not loaded, unless 'loadplugins' is set in "before".
|
||||||
" Return 1 if Vim could be executed.
|
" Return 1 if Vim could be executed.
|
||||||
func RunVim(before, after, arguments)
|
func RunVim(before, after, arguments)
|
||||||
call RunVimPiped(a:before, a:after, a:arguments, '')
|
return RunVimPiped(a:before, a:after, a:arguments, '')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func RunVimPiped(before, after, arguments, pipecmd)
|
func RunVimPiped(before, after, arguments, pipecmd)
|
||||||
|
@@ -763,6 +763,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2184,
|
||||||
/**/
|
/**/
|
||||||
2183,
|
2183,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user