# HG changeset patch # User Bram Moolenaar # Date 1565982003 -7200 # Node ID bf807c68ac804e356b12eb091a6694f7cdfc2802 # Parent e17680ecb70d8730bdbe010e031422bd67775dd8 patch 8.1.1858: test for multi-byte mapping fails on some systems commit https://github.com/vim/vim/commit/2f710afe7f166973c879bf7424678ba84368c1bb Author: Bram Moolenaar Date: Fri Aug 16 20:56:03 2019 +0200 patch 8.1.1858: test for multi-byte mapping fails on some systems Problem: Test for multi-byte mapping fails on some systems. Solution: Test in another way. diff --git a/src/testdir/test_mapping.vim b/src/testdir/test_mapping.vim --- a/src/testdir/test_mapping.vim +++ b/src/testdir/test_mapping.vim @@ -241,7 +241,7 @@ endfunc func Test_map_meta_multibyte() imap foo - call assert_equal('foo', maparg("\", 'i')) + call assert_match('i \s*foo', execute('imap')) iunmap endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1858, +/**/ 1857, /**/ 1856,