changeset 25114:989d7930ce65 v8.2.3094

patch 8.2.3094: Test_popup_atcursor_pos() fails without the conceal feature Commit: https://github.com/vim/vim/commit/c60e959cba03fae9cff9b2674fab646cc70819fc Author: Dominique Pelle <dominique.pelle@gmail.com> 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)
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Jul 2021 21:45:04 +0200
parents 151b80262c05
children 9ca1b31f6297
files src/testdir/test_popupwin.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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))
--- 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,