From: Bram Moolenaar Date: Tue, 27 Sep 2022 16:47:12 +0000 (+0100) Subject: patch 9.0.0609: blockedit test fails because of wrong indent X-Git-Tag: v9.0.0609 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66000ff9af8e3de93825ce7baa0c43727465eca5;p=thirdparty%2Fvim.git 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 index e95520ff00..779c6472a6 100644 --- 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 index ea6f9d3920..d32b92687e 100644 --- a/src/version.c +++ b/src/version.c @@ -699,6 +699,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 609, /**/ 608, /**/