diff options
| author | Bram Moolenaar <Bram@vim.org> | 2021-05-05 22:51:39 +0200 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2021-05-05 22:51:39 +0200 |
| commit | b7c978154e0816f4dcfae8a06b4ba1bfb7f796f6 (patch) | |
| tree | d49b6f15f75cddd7040a498caf55a7249a91fdc0 /src/tag.c | |
| parent | dc3e2e65c9dddcace4b24f0f364883d7ce448efb (diff) | |
| download | vim-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
