From: Bram Moolenaar Date: Sun, 25 Oct 2020 15:18:26 +0000 (+0100) Subject: patch 8.2.1903: buffer test fails with normal features X-Git-Tag: v8.2.1903 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37e4e03c67dacfc4a065e95492ffc4c7f490b44b;p=vim patch 8.2.1903: buffer test fails with normal features Problem: Buffer test fails with normal features. Solution: Use 'numberwidth' instead of 'conceallevel' in the test. --- diff --git a/src/testdir/test_buffer.vim b/src/testdir/test_buffer.vim index 9ba72c561..2f0f31221 100644 --- a/src/testdir/test_buffer.vim +++ b/src/testdir/test_buffer.vim @@ -364,11 +364,11 @@ endfunc func Test_badd_options() new SomeNewBuffer - setlocal cole=3 + setlocal numberwidth=3 wincmd p badd SomeNewBuffer new SomeNewBuffer - call assert_equal(3, &cole) + call assert_equal(3, &numberwidth) close close bwipe! SomeNewBuffer diff --git a/src/version.c b/src/version.c index c2d6240e8..9725e9adc 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1903, /**/ 1902, /**/