Skip to content

Commit 97c6943

Browse files
committed
patch 8.2.2355: stray test failure on Appveyor
Problem: Stray test failure on Appveyor. Solution: Finish insert command.
1 parent 797e63b commit 97c6943

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/testdir/test_autocmd.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1639,14 +1639,14 @@ func Test_BufReadCmd()
16391639
endfunc
16401640

16411641
func SetChangeMarks(start, end)
1642-
exe a:start. 'mark ['
1643-
exe a:end. 'mark ]'
1642+
exe a:start .. 'mark ['
1643+
exe a:end .. 'mark ]'
16441644
endfunc
16451645

16461646
" Verify the effects of autocmds on '[ and ']
16471647
func Test_change_mark_in_autocmds()
16481648
edit! Xtest
1649-
call feedkeys("ia\<CR>b\<CR>c\<CR>d\<C-g>u", 'xtn')
1649+
call feedkeys("ia\<CR>b\<CR>c\<CR>d\<C-g>u\<Esc>", 'xtn')
16501650

16511651
call SetChangeMarks(2, 3)
16521652
write

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2355,
753755
/**/
754756
2354,
755757
/**/

0 commit comments

Comments
 (0)