summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-06 20:40:35 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-06 20:40:35 +0200
commit94a7242ad1c41cc2a5377535f81d29a5b374b983 (patch)
tree1aa2fbd74194573dc0566b86141a156f3f139f6f
parent6bc9305a02f77136e65347951618575b2033cbc9 (diff)
downloadvim-git-94a7242ad1c41cc2a5377535f81d29a5b374b983.tar.gz
patch 8.1.1128: getwinpos() test does not work on MS-Windowsv8.1.1128
Problem: getwinpos() test does not work on MS-Windows. Solution: Skip the test.
-rw-r--r--src/testdir/test_terminal.vim5
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim
index 1f994785c..56b36d0c3 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 dfc986e45..51ae14c9e 100644
--- 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,