summaryrefslogtreecommitdiffstats
path: root/src/drawline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-11-24 23:04:02 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-24 23:04:02 +0000
commit637862fc3ca68e3fc1ea9a178bd7f9d25a6e773b (patch)
treed1a4c78520664d9551797903971c642c13f94369 /src/drawline.c
parent6ac16f0c0fe923098b9df5ac430f1923045f16ea (diff)
patch 9.0.0945: failures in the cursorline testv9.0.0945
Problem: Failures in the cursorline test. Solution: Reset extra_attr only after a text property.
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/drawline.c b/src/drawline.c
index e6fdd7a0bd..408f2d5bdb 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -2403,9 +2403,6 @@ win_line(
#if defined(FEAT_PROP_POPUP)
if (wlv.n_extra <= 0)
{
- wlv.extra_for_textprop = FALSE;
- in_linebreak = FALSE;
-
// Only restore search_attr and area_attr after "n_extra" in
// the next screen line is also done.
if (wlv.saved_n_extra <= 0)
@@ -2414,10 +2411,15 @@ win_line(
search_attr = saved_search_attr;
if (area_attr == 0 && *ptr != NUL)
area_attr = saved_area_attr;
- // wlv.extra_attr should be used at this position but not
- // any further.
- reset_extra_attr = TRUE;
+
+ if (wlv.extra_for_textprop)
+ // wlv.extra_attr should be used at this position but
+ // not any further.
+ reset_extra_attr = TRUE;
}
+
+ wlv.extra_for_textprop = FALSE;
+ in_linebreak = FALSE;
}
#endif
}