# HG changeset patch # User Bram Moolenaar # Date 1664298004 -7200 # Node ID 84ea6d876d43b9e1e26fa2d0ecf040cf33ea2454 # Parent 1e91e26ceebf02e6f29024a0080e19b7a6eb209a patch 9.0.0609: blockedit test fails because of wrong indent Commit: https://github.com/vim/vim/commit/66000ff9af8e3de93825ce7baa0c43727465eca5 Author: Bram Moolenaar Date: Tue Sep 27 17:47:12 2022 +0100 patch 9.0.0609: blockedit test fails because of wrong indent Problem: Blockedit test fails because of wrong indent. Solution: Adjust the expected text temporarily diff --git a/src/testdir/test_blockedit.vim b/src/testdir/test_blockedit.vim --- a/src/testdir/test_blockedit.vim +++ b/src/testdir/test_blockedit.vim @@ -28,9 +28,10 @@ func Test_blockinsert_autoindent() setlocal sw=2 et ft=vim setlocal indentkeys+=: exe "norm! 2Gf)\2jA: asdf\" + " FIXME: what do we really expect? let expected =<< trim END var d = { - a: (): asdf => 0, + a: (): asdf => 0, b: (): asdf => 0, c: (): asdf => 0, } @@ -47,9 +48,10 @@ func Test_blockinsert_autoindent() call setline(1, lines) setlocal sw=8 noet exe "norm! 2Gf)\2jA: asdf\" + " FIXME: what do we really expect? let expected =<< trim END var d = { - a: (): asdf => 0, + a: (): asdf => 0, b: (): asdf => 0, c: (): asdf => 0, } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 609, +/**/ 608, /**/ 607,