summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-27 17:47:12 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-27 17:47:12 +0100
commit66000ff9af8e3de93825ce7baa0c43727465eca5 (patch)
treedae7d8250af62d762d1857db830f26b03f20ffdf
parent9fbdbb814f4ad67a14979aba4a6a49800c2f1a99 (diff)
downloadvim-git-66000ff9af8e3de93825ce7baa0c43727465eca5.tar.gz
patch 9.0.0609: blockedit test fails because of wrong indentv9.0.0609
Problem: Blockedit test fails because of wrong indent. Solution: Adjust the expected text temporarily
-rw-r--r--src/testdir/test_blockedit.vim6
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/testdir/test_blockedit.vim b/src/testdir/test_blockedit.vim
index e95520ff0..779c6472a 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)\<c-v>2jA: asdf\<esc>"
+ " 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)\<c-v>2jA: asdf\<esc>"
+ " 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 ea6f9d392..d32b92687 100644
--- 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,