summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-03-02 20:49:50 +0000
committerBram Moolenaar <Bram@vim.org>2022-03-02 20:49:50 +0000
commite4e1a1e1c8a2bc6efd806e379b5fc80998318830 (patch)
tree2d6dac1b55881b8c04024d56ea67fe5df90d8225
parent2f87a99b6e9b559d51e130769e7f8377db6749f8 (diff)
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.vim2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_help.vim b/src/testdir/test_help.vim
index b8b9bbc78b..5c46de4ee3 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 341a68159c..55ebc43de4 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,