0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.2836: build failure without the +quickfix feature

Problem:    Build failure without the +quickfix feature. (John Marriott)
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar
2021-05-05 22:51:39 +02:00
parent dc3e2e65c9
commit b7c978154e
4 changed files with 18 additions and 1 deletions

View File

@@ -3511,7 +3511,7 @@ jumpto_tag(
// 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);