comparison src/fileio.c @ 18767:068337e86133 v8.1.2373

patch 8.1.2373: cannot build with +popupwin but without +quickfix Commit: https://github.com/vim/vim/commit/5a4c3082d7ab51b3d448a91578479c96c1ab0ad3 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 1 15:23:11 2019 +0100 patch 8.1.2373: cannot build with +popupwin but without +quickfix Problem: Cannot build with +popupwin but without +quickfix. (John Marriott) Solution: Adjust #ifdefs.
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Dec 2019 15:30:04 +0100
parents 49b78d6465e5
children 8f05b3cf8557
comparison
equal deleted inserted replaced
18766:3cc0ddf2abd0 18767:068337e86133
3364 * also have a swap file. */ 3364 * also have a swap file. */
3365 mf_fullname(buf->b_ml.ml_mfp); 3365 mf_fullname(buf->b_ml.ml_mfp);
3366 } 3366 }
3367 status_redraw_all(); 3367 status_redraw_all();
3368 redraw_tabline = TRUE; 3368 redraw_tabline = TRUE;
3369 #ifdef FEAT_PROP_POPUP 3369 #if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
3370 popup_update_preview_title(); 3370 popup_update_preview_title();
3371 #endif 3371 #endif
3372 } 3372 }
3373 3373
3374 #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \ 3374 #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \