changeset 23626:e23ccc04025a v8.2.2355

patch 8.2.2355: stray test failure on Appveyor Commit: https://github.com/vim/vim/commit/97c6943e11516711541848e51db3cc2ace25bbb2 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 15 16:45:21 2021 +0100 patch 8.2.2355: stray test failure on Appveyor Problem: Stray test failure on Appveyor. Solution: Finish insert command.
author Bram Moolenaar <Bram@vim.org>
date Fri, 15 Jan 2021 17:00:05 +0100
parents 234e2e303385
children 05eee5de7452
files src/testdir/test_autocmd.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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\<CR>b\<CR>c\<CR>d\<C-g>u", 'xtn')
+  call feedkeys("ia\<CR>b\<CR>c\<CR>d\<C-g>u\<Esc>", 'xtn')
 
   call SetChangeMarks(2, 3)
   write
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2355,
+/**/
     2354,
 /**/
     2353,