0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

Fix: 'colorcolumn' interfered with concealed text.

This commit is contained in:
Bram Moolenaar
2010-07-18 23:30:34 +02:00
parent d28478b557
commit d160c34019

View File

@@ -4806,7 +4806,7 @@ win_line(wp, lnum, startrow, endrow, nochange)
vcol_save_attr = char_attr;
char_attr = hl_combine_attr(char_attr, hl_attr(HLF_CUC));
}
else if (draw_color_col && vcol == *color_cols)
else if (draw_color_col && VCOL_HLC == *color_cols)
{
vcol_save_attr = char_attr;
char_attr = hl_combine_attr(char_attr, hl_attr(HLF_MC));