comparison src/tag.c @ 24594:5c456a88f651 v8.2.2836

patch 8.2.2836: build failure without the +quickfix feature Commit: https://github.com/vim/vim/commit/b7c978154e0816f4dcfae8a06b4ba1bfb7f796f6 Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 5 22:51:39 2021 +0200 patch 8.2.2836: build failure without the +quickfix feature Problem: Build failure without the +quickfix feature. (John Marriott) Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 May 2021 23:00:03 +0200
parents 4902263c302e
children 661d15592d3c
comparison
equal deleted inserted replaced
24593:3786de85c165 24594:5c456a88f651
3509 magic_overruled = OPTION_MAGIC_OFF; // always execute with 'nomagic' 3509 magic_overruled = OPTION_MAGIC_OFF; // always execute with 'nomagic'
3510 #ifdef FEAT_SEARCH_EXTRA 3510 #ifdef FEAT_SEARCH_EXTRA
3511 // Save value of no_hlsearch, jumping to a tag is not a real search 3511 // Save value of no_hlsearch, jumping to a tag is not a real search
3512 save_no_hlsearch = no_hlsearch; 3512 save_no_hlsearch = no_hlsearch;
3513 #endif 3513 #endif
3514 #ifdef FEAT_PROP_POPUP 3514 #if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
3515 // getfile() may have cleared options, apply 'previewpopup' again. 3515 // getfile() may have cleared options, apply 'previewpopup' again.
3516 if (g_do_tagpreview != 0 && *p_pvp != NUL) 3516 if (g_do_tagpreview != 0 && *p_pvp != NUL)
3517 parse_previewpopup(curwin); 3517 parse_previewpopup(curwin);
3518 #endif 3518 #endif
3519 3519