changeset 27792:2d7691a945d1 v8.2.4422

patch 8.2.4422: autochdir test fails on MS-Windows Commit: https://github.com/vim/vim/commit/adbb383e0f2bb59286ea8133f02c448fd334958f Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Feb 2022 16:00:02 +0100
parents 709ab7cbbde9
children 9f9b1130c9c9
files src/testdir/test_autochdir.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
 
--- 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,