# HG changeset patch # User Bram Moolenaar # Date 1625341504 -7200 # Node ID 989d7930ce65f61f95d8fb0b888ba96619b16e4c # Parent 151b80262c05a3321694cea2fd357c8a33503857 patch 8.2.3094: Test_popup_atcursor_pos() fails without the conceal feature Commit: https://github.com/vim/vim/commit/c60e959cba03fae9cff9b2674fab646cc70819fc Author: Dominique Pelle Date: Sat Jul 3 21:41:38 2021 +0200 patch 8.2.3094: Test_popup_atcursor_pos() fails without the conceal feature Problem: Test_popup_atcursor_pos() fails without the conceal feature. Solution: Add a check for the conceal feature. (Dominique Pell?, closes #8505) diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim --- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -1437,6 +1437,7 @@ endfunc func Test_popup_atcursor_pos() CheckScreendump + CheckFeature conceal let lines =<< trim END call setline(1, repeat([repeat('-', 60)], 15)) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3094, +/**/ 3093, /**/ 3092,