diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-02-28 12:18:55 +0100 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2019-03-01 01:56:17 +0100 |
| commit | e116b0f61f87a79fd93beb32c337f5bd9e2d3ab9 (patch) | |
| tree | 726356b432c8fb719cc79792087ecf066dda9917 /src/nvim/testdir | |
| parent | ff98f61601d61dcfd902655e70bba07fb768ce01 (diff) | |
| download | rneovim-e116b0f61f87a79fd93beb32c337f5bd9e2d3ab9.tar.gz rneovim-e116b0f61f87a79fd93beb32c337f5bd9e2d3ab9.tar.bz2 rneovim-e116b0f61f87a79fd93beb32c337f5bd9e2d3ab9.zip | |
vim-patch:8.1.0973: pattern with syntax error gives threee error messages
Problem: Pattern with syntax error gives threee error messages. (Kuang-che
Wu)
Solution: Remove outdated internal error. Don't fall back to other engine
after an error.
https://github.com/vim/vim/commit/cd62512c5595fa1f7a7f2c6ec1a90ea6bde3ad50
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_search.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_search.vim b/src/nvim/testdir/test_search.vim index 8eec1f7a1e..08ccc8d4fe 100644 --- a/src/nvim/testdir/test_search.vim +++ b/src/nvim/testdir/test_search.vim @@ -580,3 +580,8 @@ func Test_large_hex_chars2() endtry set re& endfunc + +func Test_one_error_msg() + " This was also giving an internal error + call assert_fails('call search(" \\((\\v[[=P=]]){185}+ ")', 'E871:') +endfunc |