# HG changeset patch # User Bram Moolenaar # Date 1643062504 -3600 # Node ID 3834b83850254663c64d5924250602bbbc4c8b49 # Parent a2e082438ef97d2139305bb9d1b4b3d6f199fce7 patch 8.2.4210: window title test fails in some configurations Commit: https://github.com/vim/vim/commit/a6c09a7c20dd8dae43a99c6dc634151940c2fc6c Author: Bram Moolenaar Date: Mon Jan 24 22:02:15 2022 +0000 patch 8.2.4210: window title test fails in some configurations Problem: Window title test fails in some configurations. Solution: Only run the test if the title can be obtained. diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim --- a/src/testdir/test_functions.vim +++ b/src/testdir/test_functions.vim @@ -1632,6 +1632,9 @@ endfunc func Test_setbufvar_keep_window_title() CheckRunVimInTerminal + if !has('title') || empty(&t_ts) + throw "Skipped: can't get/set title" + endif let lines =<< trim END edit Xa.txt diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4210, +/**/ 4209, /**/ 4208,