diff options
| author | Shane Smith <shane.wm.smith@gmail.com> | 2019-09-18 11:49:11 -0400 |
|---|---|---|
| committer | Shane Smith <shane.wm.smith@gmail.com> | 2019-10-27 15:33:30 -0400 |
| commit | f0dc110f31a0103811a14719a5e2cc39310171d1 (patch) | |
| tree | 20931ad314be3d1971441ac86792cdcd39709977 /src/nvim/testdir/test_quickfix.vim | |
| parent | b041096ed4647e3b73b273e6fd6e81e5265672b9 (diff) | |
| download | rneovim-f0dc110f31a0103811a14719a5e2cc39310171d1.tar.gz rneovim-f0dc110f31a0103811a14719a5e2cc39310171d1.tar.bz2 rneovim-f0dc110f31a0103811a14719a5e2cc39310171d1.zip | |
vim-patch:8.1.0469: too often indexing in qf_lists[]
Problem: Too often indexing in qf_lists[].
Solution: Use a qf_list_T pointer. (Yegappan Lakshmanan)
https://github.com/vim/vim/commit/108e7b422b7b59153dd5af1fb75e83fa36ff3db4
Diffstat (limited to 'src/nvim/testdir/test_quickfix.vim')
| -rw-r--r-- | src/nvim/testdir/test_quickfix.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_quickfix.vim b/src/nvim/testdir/test_quickfix.vim index c0f39884ea..a5ce41d8d2 100644 --- a/src/nvim/testdir/test_quickfix.vim +++ b/src/nvim/testdir/test_quickfix.vim @@ -540,6 +540,8 @@ func s:test_xhelpgrep(cchar) " Search for non existing help string call assert_fails('Xhelpgrep a1b2c3', 'E480:') + " Invalid regular expression + call assert_fails('Xhelpgrep \@<!', 'E480:') endfunc func Test_helpgrep() |