# HG changeset patch # User Bram Moolenaar # Date 1646254803 -3600 # Node ID 6ba17bf0f86a8e36f6e807d11c91a032452aa469 # Parent 56babd8ac3c3f2e48505cf657214a4241d416e27 patch 8.2.4495: help test fails in 24 line terminal Commit: https://github.com/vim/vim/commit/e4e1a1e1c8a2bc6efd806e379b5fc80998318830 Author: Bram Moolenaar Date: Wed Mar 2 20:49:50 2022 +0000 patch 8.2.4495: help test fails in 24 line terminal Problem: Help test fails in 24 line terminal. Solution: Use up to 23 lines for text. diff --git a/src/testdir/test_help.vim b/src/testdir/test_help.vim --- 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 --- 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,