comparison src/ex_getln.c @ 15575:6effd97a0429 v8.1.0795

patch 8.1.0795: cannot build without popup menu commit https://github.com/vim/vim/commit/f88af6e6757b2e373cf6cd366d6a81a066a6ade0 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 22 22:55:00 2019 +0100 patch 8.1.0795: cannot build without popup menu Problem: Cannot build without popup menu. Solution: Add #ifdef
author Bram Moolenaar <Bram@vim.org>
date Tue, 22 Jan 2019 23:00:05 +0100
parents 43fa814a7977
children 1ec942f1b648
comparison
equal deleted inserted replaced
15574:a34813688b82 15575:6effd97a0429
7266 win_size_save(&winsizes); 7266 win_size_save(&winsizes);
7267 7267
7268 /* Don't execute autocommands while creating the window. */ 7268 /* Don't execute autocommands while creating the window. */
7269 block_autocmds(); 7269 block_autocmds();
7270 7270
7271 #if defined(FEAT_INS_EXPAND)
7271 // When using completion in Insert mode with <C-R>=<C-F> one can open the 7272 // When using completion in Insert mode with <C-R>=<C-F> one can open the
7272 // command line window, but we don't want the popup menu then. 7273 // command line window, but we don't want the popup menu then.
7273 pum_undisplay(); 7274 pum_undisplay();
7275 #endif
7274 7276
7275 /* don't use a new tab page */ 7277 /* don't use a new tab page */
7276 cmdmod.tab = 0; 7278 cmdmod.tab = 0;
7277 cmdmod.noswapfile = 1; 7279 cmdmod.noswapfile = 1;
7278 7280