summaryrefslogtreecommitdiff
path: root/src/tag.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-05-05 22:51:39 +0200
committerBram Moolenaar <Bram@vim.org>2021-05-05 22:51:39 +0200
commitb7c978154e0816f4dcfae8a06b4ba1bfb7f796f6 (patch)
treed49b6f15f75cddd7040a498caf55a7249a91fdc0 /src/tag.c
parentdc3e2e65c9dddcace4b24f0f364883d7ce448efb (diff)
downloadvim-git-b7c978154e0816f4dcfae8a06b4ba1bfb7f796f6.tar.gz
patch 8.2.2836: build failure without the +quickfix featurev8.2.2836
Problem: Build failure without the +quickfix feature. (John Marriott) Solution: Add #ifdef.
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.c b/src/tag.c
index 37ed66c6e..4eb7a4f43 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -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);