aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nvim/version.c2
-rw-r--r--test/functional/legacy/quickfix_spec.lua12
2 files changed, 8 insertions, 6 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 7e88672e69..b286f03301 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -794,7 +794,7 @@ static int included_patches[] = {
// 1653 NA
1652,
// 1651 NA
- // 1650,
+ 1650,
1649,
1648,
1647,
diff --git a/test/functional/legacy/quickfix_spec.lua b/test/functional/legacy/quickfix_spec.lua
index fa9ddc78ae..5e5aefc4e6 100644
--- a/test/functional/legacy/quickfix_spec.lua
+++ b/test/functional/legacy/quickfix_spec.lua
@@ -448,11 +448,13 @@ describe('helpgrep', function()
helpgr quickfix
call setqflist([], 'r')
cad
- call assert_fails('cn', 'E553:')
- " Upstream calls quit! here to verify vim is still
- " running, but that will be covered by the
- " expected_empty() call in the busted test
- " quit!
+ try
+ silent cn
+ catch
+ " number of matches is unknown
+ call assert_true(v:exception =~ 'E553:')
+ endtry
+ quit!
endfunc
]])
end)