mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
quickfix: Fix :cexpr and :lexpr
This commit is contained in:
@@ -4403,7 +4403,7 @@ void ex_cexpr(exarg_T *eap)
|
||||
typval_T tv;
|
||||
if (eval0(eap->arg, &tv, NULL, true) != FAIL) {
|
||||
if ((tv.v_type == VAR_STRING && tv.vval.v_string != NULL)
|
||||
|| (tv.v_type == VAR_LIST && tv.vval.v_list != NULL)) {
|
||||
|| tv.v_type == VAR_LIST) {
|
||||
if (qf_init_ext(qi, NULL, NULL, &tv, p_efm,
|
||||
(eap->cmdidx != CMD_caddexpr
|
||||
&& eap->cmdidx != CMD_laddexpr),
|
||||
|
Reference in New Issue
Block a user