Skip to content

Commit 2cec027

Browse files
committed
patch 8.2.2641: display test fails because of lacking redraw
Problem: Display test fails because of lacking redraw. Solution: Add a redraw command.
1 parent f138728 commit 2cec027

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/testdir/test_display.vim

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,12 +268,13 @@ func Test_eob_fillchars()
268268
call assert_fails(':set fillchars=eob:<ff>', 'E474:')
269269
" default is ~
270270
new
271+
redraw
271272
call assert_equal('~', Screenline(2))
272273
set fillchars=eob:+
273-
redraw!
274+
redraw
274275
call assert_equal('+', Screenline(2))
275276
set fillchars=eob:\
276-
redraw!
277+
redraw
277278
call assert_equal(' ', nr2char(screenchar(2, 1)))
278279
set fillchars&
279280
close

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
2641,
753755
/**/
754756
2640,
755757
/**/

0 commit comments

Comments
 (0)