diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-05-17 19:39:04 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-05-21 16:56:55 -0400 |
commit | 9a8efec8fbbe7d9fb8786de26337e092c2084ef8 (patch) | |
tree | 19104e043948fcfc9e37c922aa9b1b3fcba80e3b | |
parent | 30ec3a067bada8ddbd37ec87fbb86a884d57f01e (diff) | |
download | rneovim-9a8efec8fbbe7d9fb8786de26337e092c2084ef8.tar.gz rneovim-9a8efec8fbbe7d9fb8786de26337e092c2084ef8.tar.bz2 rneovim-9a8efec8fbbe7d9fb8786de26337e092c2084ef8.zip |
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
-rw-r--r-- | src/nvim/testdir/test_match.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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() |