summaryrefslogtreecommitdiffstats
path: root/src/drawline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-06 22:23:40 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-06 22:23:40 +0100
commit83bf11a1ffc5a7bc4a5ba81747df606d69c1465a (patch)
treefd502f525988c5640027baafddacccc4ce856974 /src/drawline.c
parentda70cf30ef9c03e5645de0df6f7d44ffb6b31f58 (diff)
patch 9.0.0160: some diff mode tests failv9.0.0160
Problem: Some diff mode tests fail. Solution: Only advance "ptr" when a text property follows.
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drawline.c b/src/drawline.c
index fb662f71bd..6b0d5b5838 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -3473,7 +3473,7 @@ win_line(
) || lcs_eol_one == -1)
break;
#ifdef FEAT_PROP_POPUP
- if (!wp->w_p_wrap)
+ if (!wp->w_p_wrap && text_prop_follows)
{
// do not output more of the line, only the "below" prop
ptr += STRLEN(ptr);