summaryrefslogtreecommitdiff
path: root/src/drawline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-05 21:57:12 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-05 21:57:12 +0200
commit49474ca12236776bb56aeb9d39bd6592e28157c7 (patch)
tree99b57d9464cf8e999ed19cb47b605b1ec1bcb689 /src/drawline.c
parent1671de3098b7ab663398dd694b314e7f67a93411 (diff)
downloadvim-git-49474ca12236776bb56aeb9d39bd6592e28157c7.tar.gz
patch 8.1.2117: CursorLine highlight used while 'cursorline' is offv8.1.2117
Problem: CursorLine highlight used while 'cursorline' is off. Solution: Check 'cursorline' is set. (cloes #5017)
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drawline.c b/src/drawline.c
index 43604c826..ea7764ea6 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -1113,11 +1113,11 @@ win_line(
// the line number itself.
// TODO: Can we use CursorLine instead of CursorLineNr
// when CursorLineNr isn't set?
- if ((wp->w_p_cul || wp->w_p_rnu)
+ if (wp->w_p_cul
+ && lnum == wp->w_cursor.lnum
&& (wp->w_p_culopt_flags & CULOPT_NBR)
&& (row == startrow
- || wp->w_p_culopt_flags & CULOPT_LINE)
- && lnum == wp->w_cursor.lnum)
+ || wp->w_p_culopt_flags & CULOPT_LINE))
char_attr = hl_combine_attr(wcr_attr, HL_ATTR(HLF_CLN));
#endif
}