From 9a8efec8fbbe7d9fb8786de26337e092c2084ef8 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sun, 17 May 2020 19:39:04 -0400 Subject: vim-patch:8.2.0037: missing renamed message Problem: Missing renamed message. Solution: Now really add the error number. https://github.com/vim/vim/commit/1500a42c42b26cb63659d90883f7a438895cd273 --- src/nvim/testdir/test_match.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/testdir') diff --git a/src/nvim/testdir/test_match.vim b/src/nvim/testdir/test_match.vim index d35a701d61..09448ca71b 100644 --- a/src/nvim/testdir/test_match.vim +++ b/src/nvim/testdir/test_match.vim @@ -286,7 +286,7 @@ func Test_matchaddpos_error() call assert_fails("call matchaddpos('Error', [1], 1, 123, 1)", 'E715:') call assert_fails("call matchaddpos('Error', [1], 1, 5, {'window':12345})", 'E957:') " Why doesn't the following error have an error code E...? - call assert_fails("call matchaddpos('Error', [{}])", 'E290:') + call assert_fails("call matchaddpos('Error', [{}])", 'E5031:') endfunc func OtherWindowCommon() -- cgit