commit | 2a988a162c85df0092eca6b23eff9cd0fcd7de9a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Aug 13 15:24:39 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Aug 13 15:24:39 2010 +0200 |
tree | 45cb3ced6d541a371559da8e7588e9370379ba76 | |
parent | 0fcd237614a157e724e388c781ea444b033f826f [diff] |
Conceal feature caused the 'cursorline' highlighting to stop early.
diff --git a/src/screen.c b/src/screen.c index a933d6c..380eb8b 100644 --- a/src/screen.c +++ b/src/screen.c
@@ -4399,7 +4399,11 @@ # 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 = ' ';