From: Bram Moolenaar Date: Sat, 28 Dec 2019 13:06:50 +0000 (+0100) Subject: patch 8.2.0051: command line completion test skipped X-Git-Tag: v8.2.0051 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=731a799bb926c6f424dbfb63430cf631ca7e132a;p=thirdparty%2Fvim.git patch 8.2.0051: command line completion test skipped Problem: Command line completion test skipped. (Christian Brabandt) Solution: Invert condition. --- diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index 38b5826e62..6dc6c89ff6 100644 --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -555,10 +555,9 @@ endfunc func Test_cmdline_complete_bang() if executable('whoami') - return + call feedkeys(":!whoam\\\"\", 'tx') + call assert_match('^".*\', @:) endif - call feedkeys(":!whoam\\\"\", 'tx') - call assert_match('^".*\', @:) endfunc funct Test_cmdline_complete_languages() diff --git a/src/version.c b/src/version.c index 568c15649a..b8c4870163 100644 --- 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 */ +/**/ + 51, /**/ 50, /**/