comparison src/popupwin.c @ 16851:48c06fcb8be7 v8.1.1427

patch 8.1.1427: popup window screenshot test fails commit https://github.com/vim/vim/commit/54fabd4b5e373c7f1d794d24d27a30a8bac84da1 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 30 19:03:22 2019 +0200 patch 8.1.1427: popup window screenshot test fails Problem: Popup window screenshot test fails. Solution: Add missing change to popup window code.
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 May 2019 19:15:05 +0200
parents 283037126560
children e6bcccccbf7b
comparison
equal deleted inserted replaced
16850:50b4afe57e9c 16851:48c06fcb8be7
263 (char_u *)"hide", OPT_FREE|OPT_LOCAL, 0); 263 (char_u *)"hide", OPT_FREE|OPT_LOCAL, 0);
264 buf->b_p_ul = -1; // no undo 264 buf->b_p_ul = -1; // no undo
265 buf->b_p_swf = FALSE; // no swap file 265 buf->b_p_swf = FALSE; // no swap file
266 buf->b_p_bl = FALSE; // unlisted buffer 266 buf->b_p_bl = FALSE; // unlisted buffer
267 buf->b_locked = TRUE; 267 buf->b_locked = TRUE;
268 // Avoid that 'buftype' is reset when this buffer is entered.
269 buf->b_p_initialized = TRUE;
268 270
269 nr = (int)dict_get_number(d, (char_u *)"tab"); 271 nr = (int)dict_get_number(d, (char_u *)"tab");
270 if (nr == 0) 272 if (nr == 0)
271 { 273 {
272 // popup on current tab 274 // popup on current tab