diff --git a/src/testdir/test_registers.vim b/src/testdir/test_registers.vim index 14febad70..b2916f4d0 100644 --- a/src/testdir/test_registers.vim +++ b/src/testdir/test_registers.vim @@ -703,9 +703,9 @@ func Test_insert_small_delete() call setline(1, ['foo foobar bar']) call cursor(1,1) exe ":norm! ciw'\-'" - call assert_equal(getline(1), "'foo' foobar bar") + call assert_equal("'foo' foobar bar", getline(1)) exe ":norm! w.w." - call assert_equal(getline(1), "'foo' 'foobar' 'bar'") + call assert_equal("'foo' 'foobar' 'bar'", getline(1)) bwipe! endfunc diff --git a/src/version.c b/src/version.c index 435f3b8c5..493194f95 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2197, /**/ 2196, /**/