summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-13 15:24:39 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-13 15:24:39 +0200
commit2a988a162c85df0092eca6b23eff9cd0fcd7de9a (patch)
tree45cb3ced6d541a371559da8e7588e9370379ba76 /src/screen.c
parent0fcd237614a157e724e388c781ea444b033f826f (diff)
downloadvim-git-2a988a162c85df0092eca6b23eff9cd0fcd7de9a.tar.gz
Conceal feature caused the 'cursorline' highlighting to stop early.
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c
index a933d6cb0..380eb8b3b 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -4399,7 +4399,11 @@ win_line(wp, lnum, startrow, endrow, nochange)
# ifdef FEAT_RIGHTLEFT
wp->w_p_rl ? (col >= 0) :
# endif
- (col < W_WIDTH(wp))))
+ (col
+# ifdef FEAT_CONCEAL
+ - boguscols
+# endif
+ < W_WIDTH(wp))))
{
/* Highlight until the right side of the window */
c = ' ';