commit | d160c3401988381254a07417f92933821381ba3c | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Jul 18 23:30:34 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Jul 18 23:30:34 2010 +0200 |
tree | 1c42e6c9ac867d10c1abf286e52a4ac10c4b6021 | |
parent | d28478b5576e7c2aebf70a9fb03b4e4036dca03c [diff] [blame] |
Fix: 'colorcolumn' interfered with concealed text.
diff --git a/src/screen.c b/src/screen.c index 74898f8..508e627 100644 --- a/src/screen.c +++ b/src/screen.c
@@ -4806,7 +4806,7 @@ 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));