From: Bram Moolenaar Date: Fri, 3 May 2019 14:49:25 +0000 (+0200) Subject: patch 8.1.1253: mapping completion test fails X-Git-Tag: v8.1.1253 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92b9e60cb5775ebe8949b4e112feb9f8565441e0;p=vim patch 8.1.1253: mapping completion test fails Problem: Mapping completion test fails. Solution: Fix expected output. --- diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index a8222603f..30a211214 100644 --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -91,7 +91,7 @@ func Test_map_completion() call feedkeys(":map \\"\", 'xt') call assert_equal('"map ', getreg(':')) call feedkeys(":map \\\"\", 'xt') - call assert_equal('"map x', getreg(':')) + call assert_equal("\"map \", getreg(':')) unmap ,f unmap ,g unmap @@ -102,7 +102,7 @@ func Test_map_completion() call feedkeys(":map \\"\", 'xt') call assert_equal('"map ', getreg(':')) call feedkeys(":map \\"\", 'xt') - call assert_equal('"map ", getreg(':')) unmap set cpo+=< diff --git a/src/version.c b/src/version.c index aa0d1e6ba..c166346e6 100644 --- a/src/version.c +++ b/src/version.c @@ -767,6 +767,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1253, /**/ 1252, /**/