From: Bram Moolenaar Date: Sat, 6 Apr 2019 18:40:35 +0000 (+0200) Subject: patch 8.1.1128: getwinpos() test does not work on MS-Windows X-Git-Tag: v8.1.1128 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94a7242ad1c41cc2a5377535f81d29a5b374b983;p=thirdparty%2Fvim.git patch 8.1.1128: getwinpos() test does not work on MS-Windows Problem: getwinpos() test does not work on MS-Windows. Solution: Skip the test. --- diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim index 1f994785c9..56b36d0c30 100644 --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -1889,8 +1889,9 @@ func Test_terminal_statusline() endfunc func Test_terminal_getwinpos() - " does not work in the MS-Windows console - if has('win32') && !has('gui') + " getwinpos() does not work in the MS-Windows console, and the GUI runs the + " console version in the terminal window. + if has('win32') return endif diff --git a/src/version.c b/src/version.c index dfc986e45a..51ae14c9e7 100644 --- a/src/version.c +++ b/src/version.c @@ -771,6 +771,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1128, /**/ 1127, /**/