# HG changeset patch # User Bram Moolenaar # Date 1554576303 -7200 # Node ID de86c7db29db1d8d31538f9a06c86516cf232a3f # Parent 94ba74d9ee1b0bc4ece56277882778a92c081fa8 patch 8.1.1128: getwinpos() test does not work on MS-Windows commit https://github.com/vim/vim/commit/94a7242ad1c41cc2a5377535f81d29a5b374b983 Author: Bram Moolenaar Date: Sat Apr 6 20:40:35 2019 +0200 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1128, +/**/ 1127, /**/ 1126,