summaryrefslogtreecommitdiffstats
path: root/src/drawline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-11-30 20:22:49 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-30 20:22:49 +0000
commit42eba04522d6be04393f59a9eab47833e7594650 (patch)
tree7f856ea77f39ef8a296644e11e92f917532c1485 /src/drawline.c
parenteba3b7f6645c8f856132b4c06a009a3b0a44e21c (diff)
patch 8.2.3706: text property highlighting is used on Tabv8.2.3706
Problem: Text property highlighting is used on Tab. Solution: Only set in_linebreak when not on a Tab. (closes #9242)
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 109b8b35ca..ae62be8f37 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -2046,7 +2046,7 @@ win_line(
c_extra = mb_off > 0 ? MB_FILLER_CHAR : ' ';
c_final = NUL;
- if (n_extra > 0)
+ if (n_extra > 0 && c != TAB)
in_linebreak = TRUE;
if (VIM_ISWHITE(c))
{