From: Bram Moolenaar Date: Sat, 19 Feb 2022 14:49:51 +0000 (+0000) Subject: patch 8.2.4422: autochdir test fails on MS-Windows X-Git-Tag: v8.2.4422 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=adbb383e0f2bb59286ea8133f02c448fd334958f;p=thirdparty%2Fvim.git 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 index 95004d278a..6474724565 100644 --- 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 index 21fefbac4d..2e3fa4fa0f 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4422, /**/ 4421, /**/