diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-08-27 22:51:25 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-27 22:51:25 +0100 |
commit | d1f8fd59074d9c8b4d00ccdea77726a9195e0be4 (patch) | |
tree | 95d7e184bbac54e77be2bdc55349d757a5d3745e | |
parent | efdfb0c5eeedb625cdfa3f9fe6e480d18ea7c6cb (diff) | |
download | vim-git-9.0.0292.tar.gz |
patch 9.0.0292: test causes another test to failv9.0.0292
Problem: Test causes another test to fail.
Solution: Redraw to remove the popup window
-rw-r--r-- | src/testdir/test_messages.vim | 7 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/testdir/test_messages.vim b/src/testdir/test_messages.vim index 8a7d05509..bb761ab83 100644 --- a/src/testdir/test_messages.vim +++ b/src/testdir/test_messages.vim @@ -387,9 +387,7 @@ func Test_fileinfo_after_echo() call delete('b.txt') endfunc -" FIXME: running this last as it seems to cause -" Test_mapping_at_hit_return_prompt() to faile -func Test_x_cmdheight_zero() +func Test_cmdheight_zero() enew set cmdheight=0 set showcmd @@ -463,6 +461,9 @@ func Test_x_cmdheight_zero() set showcmd& tabnew tabonly + + "redraw to hide the popup window + redraw endfunc " vim: shiftwidth=2 sts=2 expandtab diff --git a/src/version.c b/src/version.c index cb54364b0..4ff578f59 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 */ /**/ + 292, +/**/ 291, /**/ 290, |