diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-27 22:21:07 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-27 22:21:07 +0100 |
commit | efdfb0c5eeedb625cdfa3f9fe6e480d18ea7c6cb (patch) | |
tree | dcaa033101f2b454d4e092f0dcafb7c3d8073a61 | |
parent | d54af2e550c6c34efbad748de36e42b318f39243 (diff) | |
download | vim-git-9.0.0291.tar.gz |
patch 9.0.0291: test failingv9.0.0291
Problem: Test failing.
Solution: Run test with cmdheight=0 last.
-rw-r--r-- | src/testdir/test_messages.vim | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/testdir/test_messages.vim b/src/testdir/test_messages.vim index 9c731ca23..8a7d05509 100644 --- a/src/testdir/test_messages.vim +++ b/src/testdir/test_messages.vim @@ -387,7 +387,9 @@ func Test_fileinfo_after_echo() call delete('b.txt') endfunc -func Test_cmdheight_zero() +" FIXME: running this last as it seems to cause +" Test_mapping_at_hit_return_prompt() to faile +func Test_x_cmdheight_zero() enew set cmdheight=0 set showcmd diff --git a/src/version.c b/src/version.c index 35df02cb9..cb54364b0 100644 --- a/src/version.c +++ b/src/version.c @@ -708,6 +708,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 291, +/**/ 290, /**/ 289, |