diff options
Diffstat (limited to 'src')
-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 304df6f99b..3c744310b3 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -5370,7 +5370,7 @@ void ex_cexpr(exarg_T *eap) } if (res > 0 && (eap->cmdidx == CMD_cexpr || eap->cmdidx == CMD_lexpr) - && qi == ll_get_or_alloc_list(curwin)) { + && qi == GET_LOC_LIST(curwin)) { // Jump to the first error if autocmds didn't free the list. qf_jump(qi, 0, 0, eap->forceit); } |