aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/quickfix.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-10-06 19:09:48 -0400
committerGitHub <noreply@github.com>2020-10-06 19:09:48 -0400
commita260d5def363ca30f0473365ea514f2dedd0d0ba (patch)
tree957e486c12d36f55c7958a08b79dd647b505b3df /src/nvim/quickfix.c
parent7b8935398587992da3233bcd7edd79013889fea4 (diff)
parent7454b11ec115da973da36c36a76a5bf81967a5ff (diff)
downloadrneovim-a260d5def363ca30f0473365ea514f2dedd0d0ba.tar.gz
rneovim-a260d5def363ca30f0473365ea514f2dedd0d0ba.tar.bz2
rneovim-a260d5def363ca30f0473365ea514f2dedd0d0ba.zip
Merge pull request #13060 from janlazo/vim-8.1.2310
vim-patch:8.1.{1619,1771,1624,2274,2310,2401},8.2.{554,1806}
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r--src/nvim/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index 0c9902aaec..7d4f52af34 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -6377,7 +6377,7 @@ void ex_cexpr(exarg_T *eap)
// Evaluate the expression. When the result is a string or a list we can
// use it to fill the errorlist.
typval_T tv;
- if (eval0(eap->arg, &tv, NULL, true) != FAIL) {
+ if (eval0(eap->arg, &tv, &eap->nextcmd, true) != FAIL) {
if ((tv.v_type == VAR_STRING && tv.vval.v_string != NULL)
|| tv.v_type == VAR_LIST) {
incr_quickfix_busy();