# HG changeset patch # User Bram Moolenaar # Date 1569446104 -7200 # Node ID 781a81bf4d24e57ea58faa40295c5ba675d4df13 # Parent 92c6fc446c6fe1a5c2cd68f981d1c071714203f9 patch 8.1.2079: popup window test fails without +terminal Commit: https://github.com/vim/vim/commit/d2c1fb476d5816db129eb428ffef6a81027eb13a Author: Bram Moolenaar Date: Wed Sep 25 23:06:40 2019 +0200 patch 8.1.2079: popup window test fails without +terminal Problem: Popup window test fails without +terminal. Solution: Check for the +terminal feature. diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim --- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -1993,6 +1993,8 @@ func Test_popupwin_with_buffer() endfunc func Test_popupwin_terminal_buffer() + CheckFeature terminal + let ptybuf = term_start(&shell, #{hidden: 1}) call assert_fails('let winnr = popup_create(ptybuf, #{})', 'E278:') exe 'bwipe! ' .. ptybuf diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2079, +/**/ 2078, /**/ 2077,