// Save value of no_hlsearch, jumping to a tag is not a real search
save_no_hlsearch = no_hlsearch;
#endif
-#ifdef FEAT_PROP_POPUP
+#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
// getfile() may have cleared options, apply 'previewpopup' again.
if (g_do_tagpreview != 0 && *p_pvp != NUL)
parse_previewpopup(curwin);
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 2836,
/**/
2835,
/**/
return compile_exec(line, eap, cctx);
}
+#ifdef FEAT_QUICKFIX
static char_u *
compile_cexpr(char_u *line, exarg_T *eap, cctx_T *cctx)
{
return p;
}
+#endif
/*
* Add a function to the list of :def functions.
case CMD_laddexpr:
case CMD_cgetexpr:
case CMD_lgetexpr:
+#ifdef FEAT_QUICKFIX
ea.arg = p;
line = compile_cexpr(line, &ea, &cctx);
+#else
+ ex_ni(&ea);
+ line = NULL;
+#endif
break;
// TODO: any other commands with an expression argument?
break;
case ISN_CEXPR_AUCMD:
+#ifdef FEAT_QUICKFIX
if (trigger_cexpr_autocmd(iptr->isn_arg.number) == FAIL)
goto on_error;
+#endif
break;
case ISN_CEXPR_CORE:
+#ifdef FEAT_QUICKFIX
{
exarg_T ea;
int res;
if (res == FAIL)
goto on_error;
}
+#endif
break;
// execute Ex command from pieces on the stack
iptr->isn_arg.number ? " append" : "");
break;
case ISN_CEXPR_AUCMD:
+#ifdef FEAT_QUICKFIX
smsg("%s%4d CEXPR pre %s", pfx, current,
cexpr_get_auname(iptr->isn_arg.number));
+#endif
break;
case ISN_CEXPR_CORE:
+#ifdef FEAT_QUICKFIX
{
cexprref_T *cer = iptr->isn_arg.cexpr.cexpr_ref;
cer->cer_forceit ? "!" : "",
cer->cer_cmdline);
}
+#endif
break;
case ISN_SUBSTITUTE:
{