diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-14 10:58:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-14 10:58:29 +0800 |
commit | 37bb40701d672d5213ec1be4e21d7808aee968e7 (patch) | |
tree | 8f2c7db06448099e9ee768e2dbd718514e5ef9ca /src/nvim/quickfix.c | |
parent | f64f6706e58061f0a3de530edd1f10e331cd1525 (diff) | |
parent | e8c25aac8d864e7033bcfe4640ee44054035f61d (diff) | |
download | rneovim-37bb40701d672d5213ec1be4e21d7808aee968e7.tar.gz rneovim-37bb40701d672d5213ec1be4e21d7808aee968e7.tar.bz2 rneovim-37bb40701d672d5213ec1be4e21d7808aee968e7.zip |
Merge pull request #23078 from zeertzjq/vim-8.2.1047
vim-patch:8.2.{1047,1048,1049,1050,1052},9.0.1447
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index cfaa3b5781..fdcdd71ceb 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -6958,7 +6958,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, &eap->nextcmd, EVAL_EVALUATE) == FAIL) { + if (eval0(eap->arg, &tv, eap, &EVALARG_EVALUATE) == FAIL) { return; } |