# HG changeset patch # User Bram Moolenaar # Date 1645282802 -3600 # Node ID 2d7691a945d17355d7dc7d3b4760c4ec393cabb0 # Parent 709ab7cbbde932ba326cb49c763892aa5c92e0bc patch 8.2.4422: autochdir test fails on MS-Windows Commit: https://github.com/vim/vim/commit/adbb383e0f2bb59286ea8133f02c448fd334958f Author: Bram Moolenaar Date: Sat Feb 19 14:49:51 2022 +0000 patch 8.2.4422: autochdir test fails on MS-Windows Problem: Autochdir test fails on MS-Windows. Solution: Expecta nother error on MS-Windows. diff --git a/src/testdir/test_autochdir.vim b/src/testdir/test_autochdir.vim --- a/src/testdir/test_autochdir.vim +++ b/src/testdir/test_autochdir.vim @@ -113,7 +113,7 @@ endfunc func Test_multibyte() " using an invalid character should not cause a crash set wic - call assert_fails('tc *', 'E344:') + call assert_fails('tc *', has('win32') ? 'E480:' : 'E344:') set nowic endfunc 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 */ /**/ + 4422, +/**/ 4421, /**/ 4420,