diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-01 15:23:11 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-01 15:23:11 +0100 |
commit | 5a4c3082d7ab51b3d448a91578479c96c1ab0ad3 (patch) | |
tree | a25f441743857c618f3f019372a284b1d57c4e0d /src/ex_cmds.c | |
parent | 9625d3d92d93be52f5d89a57b27ba2400e0fc6d2 (diff) | |
download | vim-git-5a4c3082d7ab51b3d448a91578479c96c1ab0ad3.tar.gz |
patch 8.1.2373: cannot build with +popupwin but without +quickfixv8.1.2373
Problem: Cannot build with +popupwin but without +quickfix. (John Marriott)
Solution: Adjust #ifdefs.
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 78f2bcc6b..a1eecc505 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3016,7 +3016,7 @@ do_ecmd( #ifdef FEAT_TITLE maketitle(); #endif -#ifdef FEAT_PROP_POPUP +#if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX) if (WIN_IS_POPUP(curwin) && curwin->w_p_pvw && retval != FAIL) popup_set_title(curwin); #endif |