# HG changeset patch # User Christian Brabandt # Date 1458036905 -3600 # Node ID 996109e24f02c45f908a286115f7db6104df9483 # Parent 27d347100acf1f2ba4c1efb40cbc005f317c7daa commit https://github.com/vim/vim/commit/790500a8e65bee295ef51a59dfa67ecbaab8ea17 Author: Bram Moolenaar Date: Tue Mar 15 11:05:45 2016 +0100 patch 7.4.1563 Problem: Partial test fails on windows. Solution: Return 1 or -1 from compare function. diff --git a/src/testdir/test_partial.vim b/src/testdir/test_partial.vim --- a/src/testdir/test_partial.vim +++ b/src/testdir/test_partial.vim @@ -9,9 +9,9 @@ func MySort(up, one, two) return 0 endif if a:up - return a:one > a:two + return a:one > a:two ? 1 : -1 endif - return a:one < a:two + return a:one < a:two ? 1 : -1 endfunc func Test_partial_args() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -744,6 +744,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1563, +/**/ 1562, /**/ 1561,