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
index 3f197ca..39110bb 100644
--- a/src/testdir/test_functions.vim
+++ b/src/testdir/test_functions.vim
@@ -1632,6 +1632,9 @@
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
index 4c263ae..5be0473 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4210,
+/**/
4209,
/**/
4208,