From adbb383e0f2bb59286ea8133f02c448fd334958f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 19 Feb 2022 14:49:51 +0000 Subject: [PATCH] patch 8.2.4422: autochdir test fails on MS-Windows Problem: Autochdir test fails on MS-Windows. Solution: Expecta nother error on MS-Windows. --- src/testdir/test_autochdir.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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, /**/ -- 2.47.2