diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-03-02 20:49:50 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-02 20:49:50 +0000 |
commit | e4e1a1e1c8a2bc6efd806e379b5fc80998318830 (patch) | |
tree | 2d6dac1b55881b8c04024d56ea67fe5df90d8225 | |
parent | 2f87a99b6e9b559d51e130769e7f8377db6749f8 (diff) | |
download | vim-git-e4e1a1e1c8a2bc6efd806e379b5fc80998318830.tar.gz |
patch 8.2.4495: help test fails in 24 line terminalv8.2.4495
Problem: Help test fails in 24 line terminal.
Solution: Use up to 23 lines for text.
-rw-r--r-- | src/testdir/test_help.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_help.vim b/src/testdir/test_help.vim index b8b9bbc78..5c46de4ee 100644 --- a/src/testdir/test_help.vim +++ b/src/testdir/test_help.vim @@ -152,7 +152,7 @@ endfunc " Test for setting the 'helpheight' option in the help window func Test_help_window_height() - let &cmdheight = &lines - 24 + let &cmdheight = &lines - 23 set helpheight=10 help set helpheight=14 diff --git a/src/version.c b/src/version.c index 341a68159..55ebc43de 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4495, +/**/ 4494, /**/ 4493, |