From: Bram Moolenaar Date: Fri, 15 Jan 2021 15:45:21 +0000 (+0100) Subject: patch 8.2.2355: stray test failure on Appveyor X-Git-Tag: v8.2.2355 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97c6943e11516711541848e51db3cc2ace25bbb2;p=thirdparty%2Fvim.git patch 8.2.2355: stray test failure on Appveyor Problem: Stray test failure on Appveyor. Solution: Finish insert command. --- diff --git a/src/testdir/test_autocmd.vim b/src/testdir/test_autocmd.vim index 0d6b414e68..6f8c973d7f 100644 --- a/src/testdir/test_autocmd.vim +++ b/src/testdir/test_autocmd.vim @@ -1639,14 +1639,14 @@ func Test_BufReadCmd() endfunc func SetChangeMarks(start, end) - exe a:start. 'mark [' - exe a:end. 'mark ]' + exe a:start .. 'mark [' + exe a:end .. 'mark ]' endfunc " Verify the effects of autocmds on '[ and '] func Test_change_mark_in_autocmds() edit! Xtest - call feedkeys("ia\b\c\d\u", 'xtn') + call feedkeys("ia\b\c\d\u\", 'xtn') call SetChangeMarks(2, 3) write diff --git a/src/version.c b/src/version.c index e6113c91b0..8285df7721 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2355, /**/ 2354, /**/