diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-10-15 14:24:29 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-10-15 14:24:29 +0100 |
commit | 297164cb7972beff35e375ccac4fbad8196ccbd7 (patch) | |
tree | da53da62f24c33f3b7a5fcb937f22902811dbadb | |
parent | fa7bb1d937308a60280e070b01baba5342148ff7 (diff) | |
download | vim-git-9.0.0760.tar.gz |
patch 9.0.0760: display test for 'listchars' "precedes" failsv9.0.0760
Problem: Display test for 'listchars' "precedes" fails.
Solution: Correct the expected result.
-rw-r--r-- | src/testdir/test_display.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_display.vim b/src/testdir/test_display.vim index faed0b58e..4364f03fb 100644 --- a/src/testdir/test_display.vim +++ b/src/testdir/test_display.vim @@ -143,7 +143,7 @@ func Test_display_listchars_precedes() let lines = ScreenLines([1,10], winwidth(0)+1) let expect = [ - \ "<<<a aaa a|", + \ "<aaa aaa a|", \ "a aaa aaa |", \ "aa aaa aaa|", \ " aa aaa aa|", diff --git a/src/version.c b/src/version.c index 607c102fb..0ccdf4636 100644 --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 760, +/**/ 759, /**/ 758, |