diff options
-rw-r--r-- | src/testdir/test_popupwin.vim | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim index 32a1eb7e8..ca7c6a917 100644 --- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -3722,6 +3722,10 @@ func Test_popupwin_latin1_encoding() terminal cat Xmultibyte call popup_create(['one', 'two', 'three', 'four'], #{line: 1, col: 10}) redraw + " wait for "cat" to finish + while execute('ls!') !~ 'finished' + sleep 10m + endwhile echo "Done" END call writefile(lines, 'XtestPopupLatin') diff --git a/src/version.c b/src/version.c index 3e6451843..2bb336e0b 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2153, +/**/ 2152, /**/ 2151, |