From: Bram Moolenaar Date: Wed, 26 Dec 2018 00:09:00 +0000 (+0100) Subject: patch 8.1.0639: text properties test fails on MS-Windows X-Git-Tag: v8.1.0639 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8cf734e024af56707a1165bcdfee42364695ec8e;p=vim patch 8.1.0639: text properties test fails on MS-Windows Problem: text properties test fails on MS-Windows Solution: Set fileformat to "unix". --- diff --git a/src/testdir/test_textprop.vim b/src/testdir/test_textprop.vim index 3ec6ea81d..ccf7d2846 100644 --- a/src/testdir/test_textprop.vim +++ b/src/testdir/test_textprop.vim @@ -230,6 +230,7 @@ func Test_prop_byteoff() call prop_type_add('comment', {'highlight': 'Directory'}) new call setline(1, ['line1', 'line2', '']) + set ff=unix call assert_equal(13, line2byte(3)) call prop_add(1, 1, {'end_col': 3, 'type': 'comment'}) call assert_equal(13, line2byte(3)) diff --git a/src/version.c b/src/version.c index 5cffe09c8..30f289962 100644 --- a/src/version.c +++ b/src/version.c @@ -799,6 +799,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 639, /**/ 638, /**/