From 707be5f3524accb8b36e80bd2532e00b8246df55 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 6 Sep 2020 17:13:44 +0200 Subject: [PATCH] patch 8.2.1626: test for strchars() fails with different error number Problem: Test for strchars() fails with different error number. Solution: Adjust the error number. --- src/testdir/test_utf8.vim | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_utf8.vim b/src/testdir/test_utf8.vim index a1e97fd70..bfb90c108 100644 --- a/src/testdir/test_utf8.vim +++ b/src/testdir/test_utf8.vim @@ -21,7 +21,7 @@ func Test_strchars() call assert_equal(exp[i][2], strchars(inp[i], 1)) endfor call assert_fails("let v=strchars('abc', [])", 'E745:') - call assert_fails("let v=strchars('abc', 2)", 'E474:') + call assert_fails("let v=strchars('abc', 2)", 'E1023:') endfunc " Test for customlist completion diff --git a/src/version.c b/src/version.c index e36167965..c6c111a31 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1626, /**/ 1625, /**/ -- 2.50.1