# HG changeset patch # User Bram Moolenaar # Date 1643064304 -3600 # Node ID 7ec64e4539afea595a7286d3518596b5d8ddd144 # Parent 198520f18300851bf8621bcf5a72defb54732ee7 patch 8.2.4212: window title test still fails in some configurations Commit: https://github.com/vim/vim/commit/1450112eef2eda211d398d6d7ac03f7a29fa4f55 Author: Bram Moolenaar Date: Mon Jan 24 22:32:28 2022 +0000 patch 8.2.4212: window title test still fails in some configurations Problem: Window title test still fails in some configurations. Solution: Explicitly set the 'title' option. 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 @@ -1637,6 +1637,7 @@ func Test_setbufvar_keep_window_title() endif let lines =<< trim END + set title edit Xa.txt let g:buf = bufadd('Xb.txt') inoremap =setbufvar(g:buf, '&autoindent', 1) ?? '' 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 */ /**/ + 4212, +/**/ 4211, /**/ 4210,